Composition is the process of combining, or composing, parts of a program into a larger program.
0
votes
0answers
26 views
Composition- could someone please clarify? [duplicate]
Possible Duplicate:
Cmposition, I dont quite get this?
I posted this question a few weeks ago:
Cmposition, I dont quite get this?
One of the answers talks about the advantage of ...
4
votes
2answers
834 views
ios grasping composition
Let's say I have property A on classA and property B on classB and I want classAB to have both properties A and B. I still don't understand how to make this all work with composition.
I realize this ...
0
votes
2answers
166 views
How to manage discovery and composition as 2 separate concerns?
I have set up an assembly catalog:
private CompositionContainer GetContainer() {
// initialize directory info
ExtensionDirectory = new DirectoryInfo(settings.ExtensionsPath);
// ...
1
vote
1answer
230 views
Recursive/looping calculations of new generation in The Game of Life
everyone.
Next generation in my Game Of Life application (Link is example application) is calculated correcly. Game works as expected, but you must press "Next" each time you want a new generation. ...
3
votes
5answers
178 views
Cmposition, I dont quite get this?
Referring to the below link:
http://www.javaworld.com/javaworld/jw-11-1998/jw-11-techniques.html?page=2
The composition approach to code reuse provides stronger encapsulation
than inheritance, ...
2
votes
1answer
1k views
JSF f:viewParam not calling setter if located in template.xhtml
Perhaps somebody can enlighten me.
If putting
<f:metadata>
<f:viewParam name="test" value="#{test.value}"/>
</f:metadata>
inside a template, the setter setValue is never ...
4
votes
1answer
193 views
How to prioritize different catalogs in MEF?
I have a AggregateCatalog that contains an AssemblyCatalog and a DirectoryCatalog.
I want them to work like this:
If both catalogs can find an export, choose the one from the DirectoryCatalog.
If ...
0
votes
1answer
120 views
(MEF) Does composition have to happen at startup?
I ask this question because I have been tasked with creating a framework so that we can have an MVC website that, when the user logs in, loads "plugins" from the database by pulling their assemblies ...
1
vote
1answer
89 views
F# compose pattern matched function
I have these types:
type ShouldRetry = ShouldRetry of (RetryCount * LastException -> bool * RetryDelay)
and RetryCount = int
and LastException = exn
and RetryDelay = TimeSpan
type ...
0
votes
2answers
360 views
Updating MEF catalog at runtime
I am currently working on an MVC web app with MEF so that a) developers can develop plugins for the website, and users can elect which plugins they want on their account. This means that some of my ...
2
votes
2answers
75 views
Make sure method is called on all declared and inherited members of some type
I want to apologize for the title, but I didn't know how to summarise this problem.
I've got the following class called AbstractWriter:
public class AbstractWriter {
private boolean ...
0
votes
4answers
110 views
is this way of inheritance wrong?
I don't know whether I chose a good title or not but I'm developing a simple card-based game and this is my scenario:
I have a Class called Player and I have instantiated few objects ( lets say 4 ) ...
0
votes
1answer
166 views
Cocos2D: Object Composition and CCSpriteBatch
I am trying to experiment with object composition in Cocos2d, inspired by the nice Cocos2D book written by Steffen Itterheim. There is a discussion about this technique in this thread (second post and ...
1
vote
1answer
116 views
Is composition with Funcs preferable to inheritance to change behaviour in a single function?
I am working on creating an IronPython console similar to the IronPythonConsole project provided with the IronPython source code. However, I want to make the ConsoleHost more extensible than the ...
1
vote
2answers
82 views
Simulation for large number of objects associated with other objects (“have a”)
I am trying to really get a good idea how to think in OOP terms, so I have a semi-hypothetical scenario in my mind and I was looking for some thoughts.
If I wanted to design a simulation for ...
2
votes
1answer
264 views
Where is the composition root in a WPF MDI application?
In traditional MDI applications some objects (Forms) will be created when a command occurs (Ex. pressing a ribbon button), so it maybe a composition point. I'm confiused about composition root in such ...
7
votes
1answer
672 views
Design patterns: Composite vs. Composition
I am finishing a course on design patterns, and while reviewing the notes came across something I missed during the semester: Composite vs. Composition. What I managed to understand is that composite ...
3
votes
1answer
199 views
I want to stop using OOP in javascript and use delegation instead
After dabbling with javascript for a while, I became progressively convinced that OOP is not the right way to go, or at least, not extensively. Having two or three levels of inheritance is ok, but ...
2
votes
2answers
514 views
Rails AntiPatterns book - Doubts on composition
I'm reading the Rails AntiPatterns book, which I'm enjoying a lot. At one point, the author talks about the goodness of composition and it gives an example where an Order class gives the ...
1
vote
2answers
132 views
PHP Any composition/inheritance solution, to avoid multiple inheritance?
I'm trying to solve a design puzzle in the most efficient way, but I tend to end thinking that I really need a multiple inheritance here. So, here I am, asking the pros. I'm creating an active-record ...
2
votes
1answer
174 views
Need some advice on POCO design and Lazy<> usage for new architecture
I'm faced with an architecture decisions wich are quite tricky to solve. I'm sorry in advance for a long post but before you can help me I have to give you a context.
My company tries to integrate ...
0
votes
1answer
132 views
How should this Class structure be written in php? Composition, Inheritance, Decorator?
I have a database where people might simultaneously be employees, customers and members of a company. My adminstration system allows me to edit the properties of the Person, Employee, Customer and ...
0
votes
2answers
188 views
Aggregation using vector
I'd like to create an aggregation and store the objects with vector, is it correct which I wrote? :
Class A
{
private:
vector <B *> pB;
public:
A();
A(int ...
1
vote
2answers
329 views
Howto use Imports with MEF and load them only if a satisfied
How can I use MEF to dynamically resolve my imports.
One Example:
class Class1
{
[Export("P1", typeof(string)]
string _p1;
}
class Class2
{
[Import("P1", typeof(string), ...
2
votes
0answers
102 views
Objective C : Video Compositions
I need a bit of advice. I currently have 4 videos, 20 seconds in length each, and one MP3, 5 minutes in length.
I am merging these lot into one video, cycling every 3 seconds to the next video, for ...
1
vote
4answers
199 views
Best way to define many composed objects in C++?
I'm a vegetarian, so suppose we have vegetables:
class Vegetable {}; // base class for vegetables
class Tomato : public Vegetable {};
class Potato : public Vegetable {};
class Carrot : public ...
3
votes
1answer
140 views
OOP philosophy (an extract on composition and inheritance from Programming in Scala)
In Programming in Scala, page 239, the first paragraph says:
Composition and inheritance are two ways to define a new class in
terms of another existing class. If what you’re after is primarily
...
11
votes
1answer
1k views
Composition, Inheritance, and Aggregation in JavaScript
There is a lot of information about composition vs inheritance online, but I haven't found decent examples with JavaScript. Using the below code to demonstrate inheritance:
function Stock( /* ...
6
votes
2answers
481 views
Composing trait behavior in Scala
Consider these two traits:
trait Poked extends Actor {
override def receive = {
case Poke(port, x) => ReceivePoke(port, x)
}
def ReceivePoke(port: String, x: Any)
}
trait Peeked ...
1
vote
1answer
1k views
using mef with asp.net mvc 3
I'm trying to use MEF in my asp.net mvc 3 application, but I could not realise the injection. Here is the code:
I have an interfaces class library which has:
namespace Namespace.Interfaces
{
...
3
votes
5answers
300 views
What is the shortest way to delegate unimplemented methods to a contained object in Java?
I am containing the "primary object" (with most of the features) within a "helper object" that will provide convenience methods. I have only an Interface available, aside from a returned object with ...
0
votes
1answer
315 views
Click event delayed in ContextMenu attached to NotifyIcon
I am working on a plugin (using System.ComponentModel.Composition) for an application to place an icon in the notification area of the Windows UI.
trayMenu.MenuItems.Clear();
// Create context menu ...
0
votes
6answers
113 views
Pre-serialisation message objects - implementation?
I have a TCP client-server setup where I need to be able to pass messages of different formats at different times, using the same transmit/receive infrastructure.
Two different types of messages sent ...
2
votes
2answers
202 views
F# - not understanding function composition (transform get files function to get duplicate files function)
Here is my problem... I don't understand why this isn't working for me :)
To be more specific I have a get files function (not the problem but feedback is welcome):
type DirectoryOptions = Directory ...
0
votes
1answer
148 views
Composition and circular dependency
A Channel contains elements of type E.
A channel also has a port that gives access to the elements in the channel
It should look something like this:
template<
typename E>
class ...
2
votes
2answers
138 views
Composition between abstract classes
Is it possible to build a relationship of composition (not aggregation) between two abstract classes?
I don't think so because I cannot instantiate an abstract class. But maybe there's a simple way ...
18
votes
1answer
234 views
Expressive and composable error types
I am struggling with the best way to report errors in a set of functions that should compose nicely, in a library I'm working on.
Concretely, I have functions that look like:
foo, bar, baz :: a ...
2
votes
5answers
289 views
Base class in C#… that can be inherited from like an interface?
I need to implement a basic behaviour for many classes. To make an example, let's say it is a sort of drawing behaviour: there are many different type of objects that may be drawn, and they all need a ...
2
votes
1answer
186 views
Should 'composite' classes reference 'parent' class?
First time poster, long(ish) time lurker.
I am attempting to develop a simple Project Management program as a learning exercise and trying to learn and follow good programming practices (coding to ...
0
votes
1answer
188 views
Sharing Entity Framework models with other projects using MEF
I am currently developing a Windows service and I am am looking to use MEF to compose all of the services components at run time. The data access module (project) is using Entity Framework 4.1 and a ...
-2
votes
3answers
62 views
How do I return a point object aggregated in a another class?
How do I return a point object aggregated in a another class? I'm trying to return a point object that's a private member of the quad class. I have written the function and it compiles, but I don't ...
0
votes
2answers
2k views
Composition and Aggregation in a Class diagram
I am having a hard time understanding these when it comes to designing a class diagram, from what I know composition is a "has-a" relationship but Aggregation ?? I have no idea what is it. and one ...
-3
votes
4answers
845 views
What is Association,Aggregation,Composition,Delegation,Realization,Dependency? [closed]
I am so confuse in "Association,Aggregation,Composition,Delegation,Realization,Dependency"...
please explain these all terms in detail with example.
Edited
I want to learn it from basic.
0
votes
5answers
403 views
Difference between Inheritance and Composition?
class B extends A
by this code class B can use variables and methods of class A.
class B
{
A a=new A();
}
Now we can also use variables and methods of class A using object a in class B.
So ...
3
votes
1answer
268 views
PHP and multiple inheritance; I know you can't, but then how do I..?
I understand that multiple inheritance1 is simply not supported in PHP, and while many "hacks" or workarounds exist to emulate it, I also understand that an approach such as object composition is ...
0
votes
2answers
159 views
The has-a relationship and the proper practice
Recently I am doing a coding exercises I need to make my project , and so far I am practicing it with the code below what I want to ask is that, is this a has a relationship? am I doing the right ...
1
vote
1answer
88 views
Zend_DB and MVC models matching database tables
I've been reading something from Bill Karwin (creator of Zend_DB) about models not being directly to do with database tables. (I think some devs have their models a direct extension of Zend_tables or ...
2
votes
6answers
201 views
Instantiating a unique object every time when using object composition?
As an example, just a couple of dummy objects that will be used together. FWIW this is using Python 2.7.2.
class Student(object):
def __init__(self, tool):
self.tool = tool
def ...
1
vote
0answers
207 views
Mef not exporting even when item is imported into catalog
Trying to do a import in code so I try this:
IServiceBehavior behavior = container.GetExport<IServiceBehavior>().Value;
but get this eexception:
{"No valid exports were found that match the ...
0
votes
5answers
177 views
C++ Design (behavior in base class, private member supplied in derived class)
I have 6 classes which all perform the same actions. I would like to move common behavior to a common [base] class.
There are actions to be performed on 6 separate objects. The six objects are ...
