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

learn more… | top users | synonyms

2
votes
1answer
53 views

Understanding Data-centric app and object composition in Clojure

I've recently been much impressed with the work of Chris Granger and his Light Table. This question is not about light table though, but more about the architecture BOT, he described using in his blog ...
0
votes
2answers
48 views

how to understand composition and forwarding methods?

Effective in Java Item 16: Luckily, there is a way to avoid all of the problems earlier. Instead of extending an existing class,give your new class a private field that reference a existing class. ...
1
vote
4answers
90 views

What is the alternative to Comparator<T> when using composition over inheritance?

While refactoring a Java project to use composition and no inheritance, I have remaining a problem where polymorphic sorting of Collections was performed. Inheritance example: public class AClass { ...
0
votes
1answer
31 views

Association, Aggrgation and Composition in UML Diagram

So I have some question about the association, aggregation and composition in UML diagram. Here is some scenarios : Product review rating composition to product review. This means that for each ...
0
votes
1answer
45 views

Trying to understand composition between c++ classes

I am having a hard time getting my head around how to correctly perform composition between C++ classes. Here is an example of where I'm getting stuck: #include <iostream> using namespace std; ...
0
votes
0answers
42 views

Composition over Inheritance [duplicate]

I am going through some articles in order to comprehend the claim of many programmers that "Composition should be preferred to Inheritance". Although I am not oppossed to that statement, I have to ...
0
votes
1answer
31 views

Sorting: composition vs external sorting facility

Reading a book I found this solution for sorting my own data set: class QuickSort { public String[] sort(String[] array) { // Implementation } } class MyDataSet { private String ...
0
votes
1answer
25 views

modeling composition and expose inner interface

I need to model something like this, ClassA implements interface IClass; ClassB implements interface IClass; ClassA has a ClassB (composition); But the ClassA's interface is the same interface of ...
0
votes
2answers
53 views

OOP: Proper way to check other instances of objects' variables

I have a collection of related classes, call them class Manager { private: std::vector<Setting> m_settings; } class Setting { private: std::vector<Action> ...
0
votes
3answers
44 views

Deriving from and compositing same Class. C++

What happens if a class has a "has-a" relationship with another class, and also it derives this same class? class A { friend classB; // here lots of things might be , but i just try to ...
1
vote
1answer
42 views

Handling variables in composition relationships

I am currently redesigning a C++ project, and wanted some opinions on how variables should be handled when classes with a "has a" (composition) relationship need to access variables that arguably ...
2
votes
2answers
31 views

Composition vs Aggregation

Let us say I have a car class and paint class(which consists of different colors). Now In terms of Object oriented design what can be the relation between these two classes is it composition or ...
-1
votes
2answers
57 views

Extending from multiple classes in java

i know java doesn't support multiple inheritance. I have 3 concrete base classes say A,B and C. I want to reuse all the utility methods in A,B & C in a single class D.I can not use composition as ...
2
votes
1answer
41 views

Demonstration of Composition for Swing

I'm currently undertaking a Java programming course in pursuit of a degree, and while I have a bit of familiarity with basic programming concepts already, I've never used Java specifically prior to ...
1
vote
1answer
86 views

enums vs. classes: code duplication, composition, extension, generics

Note: I realize that this is very similar to the question eliminating duplicate Enum code, but I think it may be useful to discuss this separately since I'm also mentioning issues like ...
1
vote
2answers
66 views

Extending a class which contains reference to List of itself

I have a super class something like class SuperClass { private String name; private List<SuperClass> subList; //getter setters } And I want to extend this SuperClass to have few more ...
0
votes
3answers
56 views

set up models to have a unique id attribute value among corresponding tables

I'm new to rails and I'm facing a problem with how to set up my models. I've got a set of models: Balloon, Paint, Brush etc. They have common attributes (like "name") I want them to have a unique ...
0
votes
3answers
94 views

Java - trying to understand composition [duplicate]

I'm implementing a basic payroll program in Java. I have an abstract super class called Employee that mainly stores data like tax ID, name, etc. I then have 2 subclasses of Employee called Hourly and ...
1
vote
1answer
30 views

RTTI using Composition

It is said that programmers should prefer composition over inheritance. I was wondering if RTTI can be achieved as easily using composition?
2
votes
3answers
99 views

When do we use ruby module vs using class composition?

A question similar to this has been asked before, but I am asking specfically using composition as an alternative to using modules mixin. class Helper def do_somthing end some variable ...
4
votes
2answers
142 views

Can inheritance be replaced completely by composition?

This question is NOT question like "inheritence vs composition". I understand completely how inheritance differs from composition, I know the Liskov substitution principle, the diamond problem, ...
1
vote
2answers
66 views

Adding ActionListener to a Panel - Panel implements ActionListener vs Panel HAS A ActionListener

I made a panel for my program. It consists of RadioButtons only. When a radiobutton is selected, I want to set a boolean in other code. This panel will be used as a component of a bigger panel or ...
3
votes
1answer
246 views

wpf - best practice of registering a DelegateCommand to a CompositeCommand

iv'e got a CompositeCommand exposed globally in my startup project public static class Commands { public static readonly CompositeCommand DiceRolledCommand = new CompositeCommand(); } in ...
3
votes
0answers
96 views

MEF [ImportingConstructor] not called until [Import(AllowDefault = true)] is used

I am using MEF1 and running in to an odd scenerio. This constructor is never called: [ImportingConstructor] public LogViewModuleRoot(INavigationCommandManager navigationCommandManager, ...
1
vote
3answers
143 views

Composition pattern

How should one approach composition instead of inheritance? Consider the following class: class GameObject {...}; class Sprite { public: void changeImage(...); }; class VisibleGameObject: ...
0
votes
2answers
30 views

ruby composition - how to show members of the composed class?

Coming from rails where I am used to the rails framework managing relationships for me. Now trying to just do basic Ruby. Trying to understand relationships and composition. Using Pack of Cards as ...
1
vote
2answers
88 views

How to embed default implementations in go & refer to the embedding type

I'm currently playing around with some go code, and have run into a small problem involving embedding which I can't find a satisfactory answer to. Given two types, one of which embeds the other, and ...
28
votes
4answers
559 views

C# - Object Composition - Removing Boilerplate Code

Context / Question I've worked on numerous .NET projects that have been required to persist data and have usually ended up using a Repository pattern. Does anyone know of a good strategy for ...
2
votes
1answer
113 views

Abstract the composition root in a reusable library

In my first question Locate the correct composition root for a .NET library helped clarifying about Dependency Injection. The exhaustive answer of Steven states (in few words if it possible) that a ...
0
votes
1answer
71 views

JavaScript and Composition

I am currently trying to understand compositions to be able to implement them into a piece of code I am working on. I don't see the importance/use of compositions atm, but for my purposes it seems ...
1
vote
1answer
154 views

Compositing two images with python wand

I need to use python wand (image-magick bindings for python) to create a composite image, but I'm having some trouble figuring out how to do anything other than simply copy pasting the foreground ...
1
vote
1answer
94 views

MEF Composition Error, Export doesn't work as it should

this is my form which should display the result from my imported class: public partial class Form1 : Form { [Import(typeof(ITests))] public ITests Template; public string texter; ...
6
votes
0answers
199 views

No vsync without Aero composition; cannot turn on Aero on CreateDesktop() made desktop

I'm rendering with OpenGL. My stuff is sandboxed so I use CreateDesktop() to prevent shatter attacks. However, the new desktop has no Aero composition when created for whatever reason (though the ...
0
votes
1answer
111 views

Guidance in creating design for multiple-inheritance composite classes in c++

I intend this question to be a more generalized question relating to my question found at the following link: Solving design involving multiple inheritance and composite classes in c++ I am working ...
1
vote
1answer
50 views

composition-and-forwarding approach for a class with two Lists

I have read Item 16 from Effective Java and Prefer composition over inheritance? and now try to apply it to the code written 1 year ago, when I have started getting to know Java. I am trying to ...
0
votes
0answers
83 views

After Effects script to arrange compositions

In Adobe After effects I'm getting compositions like this image. http://d.pr/i/ALxd But I want to arrange compositions like this. http://d.pr/i/Wt9e Now im doing this manually. But I want to know ...
0
votes
2answers
64 views

Composing shared parts with different export names via static properties

Needs - To declare shared exports of the same interface. The exports are marked by unique export names so consumers may import a particular flavor of the export. To inject a common instance of the ...
1
vote
2answers
53 views

MEF and Versioning

I'm thinking of using MEF to solve a plugin management requirement. In the blurb it says "no hard dependencies" but as far as I can see, there is a hard dependency on the import/export interface. My ...
0
votes
1answer
232 views

Scala Play 2: action composition and BodyParser

I'm using action composition for authentication and to avoid passing common parameters in each action. My question is how can I combine it the BodyParser parse.json, like in the method below? def ...
4
votes
3answers
151 views

copy constructor of a class which has an user-defined class member

I'm reading thinking in c++ chapter 14 : "Functions that don't automatically inherit" class GameBoard { public: GameBoard() { cout << "GameBoard()\n"; } GameBoard(const GameBoard&) { ...
4
votes
2answers
137 views

Best Practice for Domain Entity Tracking Data? Base class or Composition?

One common aspect of most large projects is the need for common tracking data on many Domain Entities. For instance, most large projects, track the following properties for many Domain Entities: ...
0
votes
3answers
210 views

OOP: Object Inheritance and Composition Relationships in Simple Game Design [closed]

I'm currently learning Java for several reasons, but one of the main ones being that it's a very OOP orientated language, and writing code in Java is really helping me understand the core concepts ...
1
vote
1answer
109 views

Regarding favoring composition over inheritance approch, STRATEGY pattern

I was ask an question in an interview that was lets say there's the class A with a method drawShape() and there's an another class B with the method drawSquare(). Now there's a third class C. In my ...
6
votes
1answer
98 views

Should I be using Inheritance or Composition in this case?

I'm writing a simple game and a lot of the game objects share attributes. I have two potential implementations for this. The first is using inheritance as specified in the following image: The ...
0
votes
1answer
88 views

“'SpaceShip' does not name a type” even though SpaceShip certainly is a type [duplicate]

I'm working on an Asteroids game as a way to teach myself some programming stuff, and I'm getting this error that one of my classes doesn't name a type. I have a SpaceShip class that inherits from ...
0
votes
0answers
48 views

Can we replace composition with aggregation

we have implemented a scenario and we used aggregation in it, after some time we realize that use of aggregation is not a correct choice, now we want to use composition instead of aggregation. Can we ...
0
votes
1answer
136 views

Retrieve client id for facelets

How do I retrieve clientId for a facelet included with ui:include? For a reusable component I use this syntax: cc.clientId. EDIT1 The question is in the context of Determine absolute id. To include ...
1
vote
0answers
68 views

Python: Functional Composition vs. **kwargs

I am confused about the compose function in python. From what i've read there are two possible uses: compose(f,g)(x) ~> f(g(x)) and compose(f,g, unpack=True)(x) ~> f(*g(x)) the latter ...
0
votes
2answers
82 views

Is this the correct way to implement composition in C++?

A chest is composed of treasure. I've implemented it the following way: treasure.hpp #pragma once class Treasure{ public: protected: private: //data members int gold; }; ...
5
votes
1answer
145 views

Locate the correct composition root for a .NET library

I've read various other question here on the argument, most notably Dependency Inject (DI) “friendly” library Ioc/DI - Why do I have to reference all layers/assemblies in entry application? and ...

1 2 3 4 5 9