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

learn more… | top users | synonyms

0
votes
1answer
205 views

object validation flexibility design: aggregation vs composition

I've got a library written in C++ that provides a Virtual Machine ("VM") of a graphical programming language. It uses an image (e.g. png file) as its source code and executes instructions. The VM is ...
1
vote
0answers
113 views

Algorithm for inner shadow composition

I would like to ask pretty specialized question. I have 3 RGBA layers: source layer, inner shadow (blured and colored complement of source layer's alpha channel) and background. First two can have ...
1
vote
1answer
63 views

How do I call the invokeLater method from a thread in Java?

Ok, this is my problem: I am trying to build a custom download helper for one of my projects. I wanted my implementation to allow multiple downloads (running simultaneously) so I figured that I ...
12
votes
5answers
230 views

Composition vs Inheritance in MVP

I'm using MVP pattern to develop a large scale application. While working in the development I have come up with the question whether if composition or inheritance should be used. For example: Let's ...
1
vote
2answers
37 views

When subclassing an object, what is the appropriate method to handle functions that don't make sense on the child?

Before I jump into the meat of the question, let me note that this is a purely theoretical query. I'm not interested in this for practical reasons, I'm interested in the underlying OOP theory on how ...
-4
votes
1answer
61 views

Get event from composition in c# [closed]

I have a panel containing a button. The button has a handler attached to the click event. When I click the button, will the click event of the panel be raised?
2
votes
4answers
110 views

Inheritance or composition on gui objects

I am developing a simple game. I created a Maze class which contains methods and algorithms for creating / modifying / solving mazes. I also created a GraphicalMaze class, which should only contain a ...
1
vote
3answers
77 views

Is there a way to use the Delegation design pattern without losing substitutability in Java?

This question refers to the Delegation design pattern found here. I have a number of interfaces for my game engine representing various entities: Player Vehicle Mesh etc. and each one of these ...
0
votes
1answer
200 views

“Cannot access protected property” Error

I have two classes involving composition not inheritance., class A and class B. One of class A's properties is an array of class B objects. Class A has a public method A::getName(). Class B also has a ...
2
votes
1answer
97 views

UML diagram - Composition

Could someone help me out with this UML diagram? Given this UML diagram, suppose that at runtime, we have created objects a1 and a2 from class A, b1 and b2 from class B, c1 and c2 from class C, d1 ...
-1
votes
1answer
100 views

Composition in Java - Getting a null output

I am new to java and trying to use composition for the first time. I built this class called Person, who takes as an attribute a string name, and an object pAddress. It has two constructors and one ...
0
votes
2answers
121 views

Composing Haskell filters

I am converting the zxcvbn password strength algorithm to Haskell. I have two functions that check for all characters being ASCII and that a brute force attack is possible: filterAscii :: [String] ...
1
vote
2answers
39 views

How to switch from one sequence of events to another?

I would like that first event to arrive will cause some work. Later I would like to throttle down work a little bit. Until now I came with the following code: var events = ...
1
vote
2answers
237 views

C++ classes (composition and inheritance - header files, array of classes)

I have written 4 header files (of classes) of which 3 classes has been successfully compiled (Customer, GoldCustomer and PlatinumCustomer). GoldCustomer and PlatinumCustomer are derivation ...
0
votes
1answer
87 views

Decorator UML explain the composition

I have already looked at this question enter link description here however i cant seem to find the answer to WHY there is a composition between the two objects The link to the uml is here: enter ...
2
votes
2answers
97 views

Access caller object when using composition in AS3

In ActionScript3, I am trying to access the properties of the caller object from a composite. public class Robot { ... private var controlPanel:ControlPanel; ... public function Robot() { ... ...
3
votes
2answers
173 views

Building a minimal predicate function by composing Option[predicate] functions in Scala (possibly with scalaz)

I have results in a list that I wish to filter. The user can supply a specific limit to any of the attributes on a row (e.g., I only want to see the rows where x == 1). If they specify no limit, then ...
1
vote
1answer
237 views

Relations between classes - both inheritance and composition [closed]

I've a game I'm working on, Snake. I've problem with the relationships between classes and I don't really understand why. I've these three classes: Snake - The snake class. Food - The food which ...
0
votes
2answers
89 views

Is composition (as opposed to inheritance) not extremely tedious?

Say you have interfaces IBuilding and IDwelling, and class House which implements both. It encapsulates a building and a dwelling: class House implements IBuilding, IDwelling { private IBuilding ...
2
votes
3answers
506 views

Extends Frame class in main method's class

Today when I was reading my lecture notes, I don't understand what the purpose of extends is in this context. Consider this code: import java.net.*; import java.awt.*; public class QueenApl ...
0
votes
2answers
64 views

Using composition - should an exception be thrown if wrong type

When using composition, if an object is not of the type of the interface should an exception be explicitly thrown. An example would be: $myObject = new MyConcreteTypeA(); Now, my interface is ...
2
votes
3answers
94 views

How can the member objects be changed at run time in composition?

From Thinking in C++ Vol. 1 (P-33): Composition comes with a great deal of flexibility. The member objects of your new class are usually private, making them inaccessible to the client ...
1
vote
2answers
88 views

OOP and Design Practices: Accessing functionality of member objects?

I've been working on a small project using C++ (although this question might be considered language-agnostic) and I'm trying to write my program so that it is as efficient and encapsulated as ...
0
votes
1answer
134 views

Attribute like InheritedExport in Constructor in MEF

I am developing an open ended application and I am new to MEF. I need to hide MEF totally from derived classes. So here is my scenerio. I have a BaseAssembly public class ListContainer { ...
1
vote
1answer
39 views

Importing a class without exporting it

I am using MEF. My application is open ended but I still want to hide it from people who are extending it. e.g. BaseAssembly has public class ListContainer { [ImportMany(typeof(IBase))] ...
0
votes
2answers
74 views

How to use composition from another class to set Name?

I have some of the code here. I am trying to use one class to reference another so I may obtain the first name of the person. I want the firstName in main class to work but IDE mentions the variable ...
0
votes
2answers
130 views

Render 2D image (with depth) in OpenGL preserving depth testing

I have an image from an external source (say a software ray tracer) that also has a depth buffer. I want to render that image in an OpenGL scene (which contains several other 3D objects) such that the ...
2
votes
2answers
177 views

How to compose functors with STL?

The following is possible in STL: int count = count_if(v.begin(), v.end(), bind2nd(less<int>(), 3)); This returns the number of elements in v that are smaller than 3. How do compose a functor ...
1
vote
3answers
52 views

Sharing base object with inheritance

I have class Base. I'd like to extend its functionality in a class Derived. I was planning to write: class Derived(Base): def __init__(self, base_arg1, base_arg2, derived_arg1, derived_arg2): ...
0
votes
1answer
80 views

How to pass member functions to composition's member that takes function pointers?

I have the below class that yields this error for the lines I commented: Description Invalid arguments 'Candidates are: Eigen::Matrix Forward_Euler(double ()(double), double ()(double), double ...
0
votes
1answer
57 views

Acessing protected members of composition class

I have the below class that has two custom objects as member variables. I get errors with the bold section. What is the proper way to access protected members of the composition classes? I get ...
2
votes
1answer
135 views

Initializing traits within a trait in scala

In Scala in Depth there is this example: trait Logger { def log(category: String, msg: String) : Unit = { println(msg) } } trait DataAccess { def query[A](in: String) : A = { ... ...
1
vote
0answers
49 views

Extending module functionality in python

I have a series of modules, each of which contains a behavior which I want to mix into a class via composition. Since each of these modules has some common & redundant code, I attempted to extract ...
0
votes
1answer
97 views

trying to learn animation in WPF with CompositionTarget.Rendering

I am trying to figure out how to animate/move elements in WPF with VB.NET. It was suggested to me to try using CompositionTarget.Rendering but I am having difficulty getting started. Below is my code ...
0
votes
2answers
71 views

Using both Inheritance and Composition in the same class?

I know the rule of using inheritance when there is an is-a relationship, and composition when there's a has-a relationship, but are the two mutually exclusive/replacements for one another or would ...
1
vote
2answers
83 views

Aggregation and composition - wrong tutorial example

I find these two examples conceptually identical - yet one is a composition and the other aggregation. In the first example, the relationship 'class (has-a) students' is a compositon. A class ...
0
votes
2answers
72 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
45 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
3answers
961 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
48 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
129 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
62 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> ...
0
votes
1answer
83 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 I'm asking a ...
2
votes
2answers
154 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
89 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
128 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
109 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
104 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
163 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 ...

1 2 3 4 5 9