Composition is the process of combining, or composing, parts of a program into a larger program.
0
votes
2answers
142 views
Composition vs reducing coupling?
I am getting a little confused between using objects as attributes within other objects (and invoking methods on the attribute) using composition, versus having a good overall coupling.
Is there a ...
0
votes
0answers
85 views
Class Design Dilemma - Usage of base class to “common out” repeating code in derived classes
I have a lot of Page classes to work with, for my test automation. Each of them has three following essential elements:
WebDriver
Uri
Essential element of that page.
I decided to make a base class ...
0
votes
2answers
113 views
classes calling other classes
I have some classes.
In the facade I have an starter class which is instantiated and calls all the methods from there.
Then I have a car class, and owner class, a garage class and a parking space ...
0
votes
3answers
170 views
Methods and Composition java
I have a facade engine with a method
getOwner()
I also have another class called Car and another caller Owner. Car class also has a getOwner() method while the Owner class contains the name, the ...
2
votes
2answers
847 views
association, aggregation and composition
I'm dealing with this problem. I'm creating math problems, each one has response. For example.
If my question is about the "result of 5x + 15 = 2?", I'll be waiting just one answer (as integer).
If ...
2
votes
1answer
86 views
OO design in python. Up across and down?
My question is really about how two objects that have both been created by a parent class can talk to each other. The real use case I have is for a PySide GUI application where two widgets that are ...
5
votes
6answers
493 views
what kind of relationship is there between a common wall and the rooms that located next to it?
I want to know whats the Relationship between a common wall (that are located In an adjoining room ) and the rooms.
As i know the relationship between a room and its walls is Composition not ...
0
votes
3answers
145 views
java Composition with back reference of owner class in owned class
Owner Class:
class University {
List<Student> studentCollection;
public void addStudent();
public void removeStudent();
}
owned Class:
class Student {
String name;
public void ...
0
votes
3answers
221 views
MEF Composition Errors: Only on some machines
I've a console application that uses MEF. It works fine locally and when deployed to a development machine. When deployed to the release machine it throws composition errors.
The development and ...
5
votes
6answers
160 views
New Java programmer, basic java composition
I am a new computer programming student. I watched a video about Java, basic composition, and the guy in the video made an example about this topic like this:
public class PaperTray
{
int pages = ...
0
votes
1answer
224 views
Calling services from the Orchestrating layer in SOA?
The Service Oriented Architecture Principles site says that Service Composition is an important thing in SOA. But Service Loose Coupling is important as well.
Does that mean that the "Orchestrating ...
2
votes
0answers
193 views
iOS SDK AVFoundation … How do I compose a video asset with a drawing asset
What I have achieved so far:
Using AVFoundation services, I have placed a video in a UIView that a user can play, pause, etc (using AVPlayer, AVPlayerItem, AVPlayerLayer, etc)
I have placed a ...
-2
votes
1answer
302 views
Google Go, composition and multiple inheritance
Since Google Go uses an composition system instead of (multiple) inheritance, I'm just wondering about these 3 code snippets. Google Go says they force the programmer to use composition.
A) should be ...
0
votes
1answer
174 views
ui:repeat inside composition not printing values
I am new to jsf. I have the bellow code. When I place ui:repeat inside rich:toolbar it prints the data. But when I place it after the toolbargroup inside composition tag it doesn't print anything. I ...
0
votes
1answer
145 views
I need to understand composition and inheritance better
I have a baseball player super class
I have a left field, center field, right field, 3b, ss, 2b, 1b, catcher, pitcher that inherits from player.
So, let's take the pitchers for example. Would a ...
9
votes
1answer
294 views
howto distinguish composition and self-typing use-cases
Scala has two instruments for expressing object composition: original self-type concept and well known trivial composition. I'm curios what situations I should use which in.
There are obvious ...
0
votes
1answer
113 views
Composition over private inheritance [duplicate]
Possible Duplicate:
When to use C++ private inheritance over composition?
Please help me with a scenario where composition is preferred over private inheritance.
1
vote
1answer
2k views
Inheritance vs Composition [duplicate]
Possible Duplicate:
Prefer composition over inheritance?
I wonder, why (or in which cases) should one consider inheritance instead of composition when there are so much cons of it:
if we ...
0
votes
3answers
151 views
How does composite object communicate with parent object?
I am from system programming background in C and Java programming is Greek and Latin for me.
So my problem is:- I have 2 JFrame Objects
I have a parent Object A
which has child Objects B.
Object ...
0
votes
0answers
75 views
How to specify a mock object for export in `CompositionContainer`
I have the following test set up. The exported IUnitListViewModel implementation uses an exported IUnitDefViewModel in its functioning. I want to make sure that the proper methods of the ...
1
vote
2answers
99 views
How can the attributes of outer class can be accesed within the inner class in Composition Classes design?
I am totally unable to access the outer class attributes inside the inner class ...
even if i make object of outer class,, in inner class*which makes no sense in composition design* .. even then i ...
0
votes
2answers
131 views
IList List is null in my Composition Class .. WHY?
I am usling IList List property to get a list of students class in University class .. as i try to access this list in department Class which is a part of university class .. the List is Null .. can ...
19
votes
4answers
434 views
Combining Predicates in F#
Is there a standard way of logically combining predicates in F#?
For example, let's say I have isCar x and isBlue x then I want something that gives me:
let isBlueCar x = isCar x && isBlue x
...
0
votes
4answers
104 views
What to do when object members of a class need access to each other's data?
I have a simple Store class that contains an Inventory object and a CashRegister object. In order to sell an item, the CashRegister object needs to access the Inventory object's methods; namely, those ...
1
vote
1answer
136 views
How to restrict complexType to a specific value in XML Schema?
I'm trying to do some form of composition with restrictions in XML Schema.
I have a complexType that is reused in several other complexTypes. I want to specify that FieldA must be one value when ...
2
votes
3answers
266 views
Which pattern has lower coupling in java: passing objects to a method or using composition?
//Ex1: (passing by object)
class A {
}
class B {
void foo(A a) {
<do something with a>
}
}
//Ex2: (composition)
class C {
A a
void foo(){
<do something with a>
...
4
votes
4answers
84 views
C++: Why doesn't this sync() work in this Composition pattern?
I'm trying to build a progressbar class that can have an arbitrary number of subprogressbars by using something that looks like the composition pattern.
let's say I have this class pbar:
class pbar
...
1
vote
4answers
195 views
Avoid temporary variables by using name shadowing
I create a lot of temporary variables in Haskell:
main = do
let nums'' = [1..10]
let nums' = a . bunch . of_ . functions $ nums''
let nums = another . bunch . of_ . functions $ nums'
...
2
votes
2answers
52 views
Best solution to have class specific attributes
I created an abstract class A that implements methods that are commonly used.
Now I realized that a new class has to use the same methods but with different attribute values.
Below is a quick summary:
...
3
votes
2answers
913 views
What is the difference between Event-Delegation Model and Event-Inheritance Model?
I tried searching for the disparities between Event-Delegation Model and Event-Inheritance Model but did not find answers concrete enough to distinguish the two.
What is the real differences between ...
-1
votes
2answers
148 views
Constructor call in composition
I have the following code for composition. It generates an error,
#include <iostream>
using namespace std;
class X
{
private:
int iX;
public:
X(int i=0) ...
4
votes
4answers
653 views
Extending a JFrame
What is are the pros and cons of extending a JFrame rather than create a new Frame?
For example:
public class Test extends JFrame{
setVisible(true);
}
or
public class Test{
JFrame test = new ...
5
votes
2answers
139 views
Is there a function that takes a list of argument lists and applies each list to a given function?
I.e., something like:
(defn dowith [f & arglists]
(doseq [args arglists] (apply f args)))
Is there a built-in function like that in Clojure?
4
votes
2answers
237 views
How to avoid name clashes when composing objects
In JavaScript you can compose objects using some kind of extend function.
For example I might have an observable class that exposes a set of public methods (get, push, set, increment, get, etc)
In ...
3
votes
1answer
95 views
Understanding when to use inheritance to allow one class to use instances of another
When creating classes, is there a rule for when to use inheritance and when to import a new class, without inheritance, into another?
Here’s an example:
I make a class called Person, and then create ...
3
votes
4answers
62 views
Leaking attributes of class to it's components
I've got the following classes:
class A {
// Whatever
};
class B {
T attribute;
A a;
};
Now suppose i have the following scenario:
A aX, aY;
B bX, bY;
Now i can sort of ...
4
votes
5answers
252 views
interface vs composition
I think I understand the difference between interface and abstract. Abstract sets default behavior and in cases of pure abstract, behavior needs to be set by derived class. Interface is a take what ...
0
votes
1answer
128 views
How can I reuse columns and events in Doctrine 2 Entities?
Suppose I'm writing a blog app: My Posts Entity should have a createddate, modifieddate, name, and slug property (the slug would be generated when I call setName() for the Entity). I want to reuse ...
0
votes
2answers
314 views
Java - calling this.function() from composition object
I have function dodaj(); in JFrame, and in this JFrame i have JPanel.
To use Buttons from JPanel i am using ActionListener. But when someone click on button I wanna call function dodaj(); from JFrame.
...
1
vote
2answers
122 views
Create instance of a class with arguments composed via MEF
I have the following situation. In assembly A I have the following:
public class Service : IService
{
private readonly IDependency dependency;
public Service(IDependency dependency)
{
...
0
votes
4answers
214 views
need a std::vector with O(1) erase
I was surprised to find out the vector::erase move elements on calling erase . I thought it would swap the last element with the "to-be-deleted" element and reduce the size by one. My first reaction ...
0
votes
2answers
122 views
Solving UML in Java Scenario
I am a beginner level of studying java and revising for my exams through answering the questions on previous past exam papers and there is one question that I am stuck on.
An OO design for a game has ...
2
votes
2answers
59 views
preserving order of function implementation
So I have a numeric value and on those two functions can be applied.
Lets say I have a number 8.
I want to take its square and then its log or first the log and then its square.
So my function ...
0
votes
3answers
282 views
setters and getters with heavily nested composition
I study the dynamics of multibody systems and am trying to apply OO techniques to my work in modelling various mechanical systems. One thing I am encountering in my work is that I it makes sense to ...
1
vote
2answers
3k views
error: constructor Player in class Player cannot be applied to given types;
whenever I compile my code, I receive the following errors:
error: constructor Player in class Player cannot be applied to given types;
but it doesn't list any types. The code in question is
...
1
vote
3answers
464 views
Using composition instead of inheritance
I come from a ECMAScript background (seems to be very C/C++). Thus, I learned classic C++ style inheritance involving classes, objects, and cool stuff like polymorphism.
I like Android and iOS ...
3
votes
1answer
280 views
MEF Composition When Application Is On A Network Share
I've an MEF application that works great when run locally, but doesn't work when called remotely on a network share.
I'm using Assembly.LoadFrom to avoid UNC issues, but seeing as all the dlls are ...
1
vote
2answers
357 views
Python object composition - accessing a method from the class that called it
You'll have to forgive me, I am trying to teach myself OO but I have come across this problem with composition and 'has-a' relationships.
class Main(object):
def A(self):
print 'Hello'
...
2
votes
5answers
220 views
Can an abstract class be member of other concrete class as composition relationship ? c++
P is an abstract class, I want to make it member of class A which is a normal concrete class. Is it possible if yes how. Relationship is composition
Thanks for help
3
votes
1answer
189 views
Is it always a bad idea to extend JFrame?
When developing Java Swing GUIs, is it always a bad idea to extend JFrame? And what about JPanel, or other JComponents? Also, what makes it bad?
