Composition is the process of combining, or composing, parts of a program into a larger program.

learn more… | top users | synonyms

0
votes
2answers
80 views

How to unregister a ComposablePart from CompositionContainer

I am using MEF with a static CompositionContainer. My classes use this container like this: public void SomeClass { [Import(typeof(AnotherClass)] private AnotherClass Instance {get;set;} ...
0
votes
1answer
51 views

Using flash images with after effects

I have been using flash to trace an image of a lighthouse. I used it because I found it difficult to trace the lighthouse in photoshop. I was just wondering is it hard to take the image from flash ...
1
vote
4answers
1k views

Association, Composition and Aggregation - Implementation with java

I'm a bit confused about Association, Aggregation and Composition. Even though loads of website, and forums discusses this topic, i have become more confused after reading some of them. I want to ...
0
votes
1answer
50 views

EIEIO Composition (exposing a slot of a contained object through own slot)

I have two EIEIO classes: (defclass i-driver () (;; more slots (exit-conditions :initarg :exit-conditions :initform nil :type list :documentation "Conditions to test in the ...
0
votes
1answer
140 views

How to redirect all methods of a contained class in Python?

How to implement the composition pattern? I have a class Container which has an attribute object Contained. I would like to redirect/allow access to all methods of Contained class from Container by ...
1
vote
1answer
65 views

noncopyable static const member class in template class

I have a non-copyable (inherited from boost::noncopyable) class that I use as a custom namespace. Also, I have another class, that uses previous one, as shown here: #include <boost/utility.hpp> ...
1
vote
1answer
92 views

What is a function composition algorithm that will work for multiple arguments, such as h(x,y) . f(x) . g(x) = h(f(x),g(x))?

For example, suppose we had the functions double(x) = 2 * x, square(x) = x ^ 2 and sum(x,y) = x + y. What is a function compose such as compose(compose(sum, square), double) = x^2 + 2*x? Notice that ...
2
votes
2answers
185 views

XSLT multiple document output for combined subelements

I have a command contained with a message and body that need to be duplicated. Like so: <message> <body> <command name="1"/> <command name="2"/> </body> ...
4
votes
1answer
41 views

Is it bad practice to return a Data structure of member functions in composition?

Take for example you have a class A and class B. Class A uses a compositional type relationship that interacts with many of the class B objects. class A stored these class B objects references in an ...
3
votes
1answer
91 views

Composition over inheritance in this case?

Wanted to solicit whether composition over inheritance makes sense here, and if so a good way to go about it. I have an interface like so: public interface IUser { string FirstName {get; set} ...
1
vote
0answers
132 views

Composition instead of inheritance in Java [closed]

I have colleagues at work who claim that "Inheritance is an anti-pattern" and want to use composition systematically instead, except in (rare, according to them) cases where inheritance is really the ...
1
vote
2answers
118 views

OOP: Composition and public property?

So lets say I have a class that is composed of other classes. class HttpRequest { public $session = new Session(); // .. the rest of the HttpRequest code } Now, I want to have access to Session ...
2
votes
1answer
119 views

Grammar modularisation: A way to import lexer rules after defining others first?

Say I have a simple grammar (lexer and parser) for parsing & evaluating simple mathematical expressions (as in a few antlr examples out there) that also allows simple variable definitions (i.e. ...
0
votes
2answers
217 views

Increasing The Duration Of A Composition In After Effects

I want to use a stock composition I downloaded. It is of falling leaves and was built in After Effects using Particular. Find it here! I need to increase the time of the composition to match a ...
3
votes
1answer
37 views

Is guaranteed that class members are disposed at the time that the class is disposed

I have the following situation: I have class A that contains a stack member object from class B: Class A{ B b; } I am using B object to redefine the behavior of the initialization and ...
3
votes
1answer
62 views

PHP object composition with observer?

Excuse me if my terminology seems incorrect... (because it probably is) Say i am using composition and my higher-level objects are something like: abstract child { /* array of Activity objects ...
0
votes
1answer
85 views

QT4: which QPainter::CompositionMode is suitable to merge two pixmaps with white background to mix the two foreground contents

I am using QPainter to put a pixmap onto another. The pixmaps have white BG. I want that the result is a pixmap with white BG but with mixed content, even if it is ugly and confused. I want to create ...
33
votes
4answers
893 views

Concrete example showing that monads are not closed under composition (with proof)?

It is well-known that applicative functors are closed under composition but monads are not. However, I have been having trouble finding a concrete counterexample showing that monads do not always ...
1
vote
2answers
191 views

GWT MVP composition of parts

We've been using the recommended GWT approach of building parts of our application in an MVP manner. The logic we use is based on Google's examples - the Presenter fetches/prepares data and sets it on ...
3
votes
4answers
139 views

TDD and inheritance

I am working on my first project using TDD and have hit a bit of a brick wall when it comes to inheritance. For example if I have something like this public interface IComponent { void ...
0
votes
5answers
517 views

CCNode's position

This post discusses cons/pros of subclassing CCSprite or having CCSprite as member. Suppose I have a CCNode which has a CCSprite as a member. Then I'll add the CCNode as a child to my layer and add ...
3
votes
3answers
157 views

Composition vs inheritance. Where did I go wrong?

I need to model organizational hierarchy structure in my entities. An organization can be head-office, regional head, sub region, area office. There are a lot of common functions that the ...
0
votes
1answer
191 views

Composition over inheritance with generics

Lets say I have two interfaces ISomeInterface and ISomeInterface<T> and ISomeInterface<T> inherites from ISomeInterface. Now if we have to classes Someclass and SomeClass<T> how can ...
1
vote
0answers
40 views

Use custom stream manipulators across multiple cpp files

I have a cpp file that contains a few custom stream manipulators that I want to use. I also have 3 classes, 1 of which is composed of the other two. Is there a way to define this manipulator file, so ...
0
votes
1answer
79 views

Design Pattern Help - Composition and Code Re-use

I always seem to fall back on the Factory Pattern/Inheritance for code reuse, and have been reading about composition over inheritance and do see the benefits of the loose coupling. You definitely ...
0
votes
2answers
155 views

Haskell use of map and composed function

Ok, I can't figure this one out even though I have an idea what it's doing... let t = ["APE", "MONKEY", "DONKEY"] Now consider three cases: map (length.group) t (map length.group) t map (map ...
1
vote
1answer
228 views

Java class diagram composition / aggregation for arrays

Consider the following: class A {} class B { private A[] a; } How would I represent the relationship between A and B on a class diagram? I would use composition / aggregation if B only held a ...
1
vote
1answer
129 views

Using the decorator pattern on this composition

Well I have a composition pattern used, where one graphic object is extended in a group and in rectangles. A group can have many rectangles and a paint() method call for the groups, calls paint ...
3
votes
1answer
117 views

A generic composition with ambiguity detection

I want to define a generic composition which works both for a -> b and for a -> Maybe b: class Comp m where (...) :: m a b -> m b c -> m a c instance Comp (->) where (...) = ...
2
votes
0answers
89 views

Tools / best practices for managing composite application components? [closed]

We are building a composite application framework based on ASP.NET MVC 4 and Microsoft's new lightweight composition container. Our team will deliver products based on this framework. Customer IT ...
4
votes
4answers
153 views

Abstract Base or Helper Class

I just today learned a little about Composition over Inheritance. I was wondering if I should apply the concept to something I wrote recently. We previously had two classes that were almost ...
2
votes
1answer
980 views

Extend JPA entity to add attributes and logic

I need to know if it's possible to add some attributes and behaviours to some POJO JPA entity (using hibernate provider) by extending it, and then to make entityManager to return extended objects ...
0
votes
1answer
163 views

Add component in a JPanel subclass

I want to create a JPanel subclass thats holds some JLabels. I started to write my code but I immediatly find a big problem. Component added to the JPanel subclass are not visible (or they are not ...
0
votes
2answers
147 views

trouble with state monad composition

I was trying out the example given at http://www.haskell.org/haskellwiki/State_Monad#Complete_and_Concrete_Example_1 How this makes the solution composible is beyond my understanding. Here is what I ...
0
votes
0answers
67 views

Java wrapping library by composition vs inheritance?

I am going to wrap about 20~30 classes from itext libray, so that end user wouldn't need to import the library classes directly. If I use composition, I have to put many casting codes. So I prefer ...
0
votes
0answers
211 views

Django model inheritance vs composition, and querying multiple models/tables together

I have a Django app that has a number of different models, all with a bunch of common data. Ultimately, I think this question comes down to a decision between inheritance and composition. My current ...
0
votes
0answers
114 views

C++ compose multiple types together through template arguments

I've recently stumbled into a problem for which I can't find an easy solution. The main issue with the situation I am about to present is that there is a lot of code repetition. I want to create ...
4
votes
2answers
741 views

MEF composition issue

I can't solve what seems to be a basic MEF problem: I have 2 "plugins" project (which we'll call P1 and P2), and a third project that is common to both plugins (which we'll call C). P1 and P2 both ...
2
votes
2answers
173 views

Virtual event handlers from several classes: multiple inheritance or composition?

My team has written several C++ classes which implement event handling via pure virtual callbacks - for example, when a message is received from another process, the base class which handles IPC ...
1
vote
1answer
160 views

Wpf objectdataprovider composition

suppose i have this class: public class Foo { public Bar aBar {get; private set;} public Foo(String name) { aBar = new Bar() { Name = name } } } public class ...
0
votes
1answer
71 views

How does “delegation” aid with thread-safe classes?

I don't really quite get the concept of "delegation" when we talk about constructing a thread-safe class. What does it mean? And how does the strategy effectively make a thread-safe class? And when ...
6
votes
2answers
179 views

What is more pythonic - function composition, lambdas, or something else? [closed]

Given the example below, which is more pythonic? Using function composition, lambdas, or (now for) something completely different? I have to say that the lambdas seem to be more readable, but Guido ...
0
votes
1answer
78 views

How can I automatically create a sub class in C#?

I have the following code: public class Page { public string FilePath { get; set; } public int RoleNumber { get; set; } public class Navigation { public string Menu { get; set; } ...
6
votes
4answers
175 views

Should composition be used exclusively over inheritance or are there cases when it should not?

In the example I'm thinking of I have about 4 lines of code that could be encapsulated by a function, and this function will surely be used in other classes in the same hierarchy. I have the ...
0
votes
4answers
92 views

Is there any way to design my Java code so these two objects don't reference themselves?

The Setup My Java code contains two objects: a Group and a Person. Each Group can contain references to multiple Person's, but each Person can only belong to one Group. The colour of each Person's ...
0
votes
0answers
66 views

Clean design for cascading ObservableCollections

I have a design challenge and some ideas how to solve it, but I am not sure whether my preferred solution is good design. I will simplify my problem to its core: I have 3 classes: “project”, “task” ...
2
votes
2answers
316 views

MEF's ImportMany in the base class imports all exports from all assembles - how to prevent that?

I am using MEF to compose exported types from several assemblies. I'm using a base class, which should ImportMany dependencies, as specified in the derived classes. It looks something like this: Base ...
12
votes
4answers
572 views

When is a composition of catamorphisms a catamorphism?

From page 3 of http://research.microsoft.com/en-us/um/people/emeijer/Papers/meijer94more.pdf: it is not true in general that catamorphisms are closed under composition Under what conditions do ...
12
votes
2answers
405 views

Tacit function composition in Haskell

Say I have a mean function defined like so: mean xs = sum xs / (fromIntegral $ length xs) but I want it in some tacit form, like this: mean = sum / (fromIntegral . length) Is there a built-in ...
3
votes
0answers
140 views

Which settings make vim a convenient email editor? [closed]

Claws-mail is my email client and it can launch an external editor when you compose an email. And in general I prefer to use vim as my editor. But with emails I can't find convenient settings. I want ...

1 2 3 4 5 10