0
votes
2answers
68 views

Composite Pattern in C#

The exercise is about making a software to manage a Robot Factory. In my program I can create single parts and then robots with them but I also can have robots with smaller robots inside. That's ...
0
votes
2answers
31 views

Can the Composite (from the Composite Pattern) have an isLeaf() method?

Is there a reason the Composite should not have an isLeaf() method? (Since the point of this pattern is (if I'm not wrong) to be able to use both the Leaf and the Composite as the same thing, without ...
3
votes
1answer
92 views

What design pattern could be used to connect elements of a composite?

If you have an implementation of a composite design pattern(or any graph/node type system), which design pattern would best describe the process of connecting nodes and creating links between class ...
0
votes
1answer
66 views

Maximum number of states in State Pattern

I am trying to use state pattern and i have a question. Is state pattern designed only for situtations with limited number of states like this: TCPState: 1- TCPEstablished 2- TCPLisenting 3- ...
3
votes
1answer
102 views

Testing the Composite Pattern

Do you know well-tested and open source Composite examples in Smalltalk? I would like to review example implementations of the Composite pattern in Smalltalk. Any dialect is fine, I am interested ...
0
votes
1answer
58 views

Freezes in the terminal. No output results [closed]

I have no idea why it don't work. It just open terminal and then nothing happent. No errors or something like that. P.S. Maybe I did something wrong with design patterns (composite & visitor). ...
0
votes
3answers
99 views

cannot convert parameter 1 from 'PrintVisitor *const ' to 'Visirot &'

I used two design pattern Composite and Visitor. I have no problem with Composite.But when he began writing derived classes for input and output got some errors, solution which I did never found. ...
1
vote
1answer
80 views

uml pattern similar to GoF composite

How can I communicate the basic idea of a hierarchy / tree of alltogether variable but fixed height for one of its instance; leaves are disjunct from nodes, they are all located on the same, least ...
5
votes
2answers
122 views

String Manipulation or Recursive Function?

I'm in the process of coding a HTML Editor in Java. I want it to support auto-indentation. I have a Composite pattern implemented to represent the HTML tag objects in the file currently being edited. ...
0
votes
3answers
99 views

Searching for specific element in Composite pattern

Suppose I have a simple composite pattern structure: abstract class User leaf class PersonalUser composite class GroupUser with a std::vector<User*> users container as its member variable ...
0
votes
0answers
84 views

How to distinguish between objects in a Rails composite pattern implementation?

I've got this Rails 3.0.X project where I'm trying to implement a templating feature for filling out lengthy forms. I want the user to be able to fill out an empty form by using previously saved data. ...
13
votes
3answers
630 views

Using Interpreter pattern on a Composite structure

I've been asked to make an expression evaluator using Composite, Recursive Descendent Parser and Interpreter. Here's the grammar : <cond> → <termb> [OR <termb>]* ...
1
vote
1answer
295 views

Composite pattern in PHP, how to design classes to work around the need to extend two classes

I'm using the composite pattern to have reusable elements to build a page. for this i have a simple interface which drives the pattern interface Ai1ec_Renderable { /** * This is the main ...
1
vote
1answer
133 views

Composite pattern with bidirectional association between Component and Composite

I have the problem mentioned in title of this post. By default, Composite Pattern has explicit implementation of Composite -> Component association. But I also need to implement association in reverse ...
0
votes
1answer
224 views

Extending the Composite pattern?

I'm using the Composite pattern to represent a hierarchical data structure: CompositeNodeA Leaf1 Leaf2 ... CompositeNodeB .... Each Leaf represents a particular task. At first, the user is ...
7
votes
1answer
660 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 ...
7
votes
4answers
2k views

Implementing a composite pattern using MVC/Backbone.js

My webapp has a composite structure i.e. each Category collection can contain a mixture of individual Items and other Categories as its rows/nodes/children (not sure of the correct terminology here). ...
1
vote
3answers
380 views

composite pattern implementation

I am writing a code that involves composite pattern and would like some clarification. I have Super Manager, a Main Manager and Ordinary Manager and they are in a descending hierarchy with the Super ...
1
vote
2answers
302 views

Definition of composite pattern

It is said that composite pattern allows you to compose objects into tree structures to represent part-whole hierachies.It is also said that composite pattern lets clients treat individual objects ...
3
votes
2answers
332 views

Circular Reference in Spring with a composite pattern

let's say that I have structure like this : As most you may see it, it's a composite pattern. How do instantiate this pattern using Spring? For instance, if I have the following code : <bean ...
0
votes
2answers
89 views

How to set up different parameter in a Composite Pattern?

for my develop i want to use the component-pattern because a component is part of another component. But there is one problem. The components need different parameters in the run-function (which must ...
1
vote
1answer
74 views

How to determine and cast to specific object of composite while using it?

I would like to have a composite structure which is build from JSON. Each element can has only one type of children - so a group can contain only groups or only leaves. Then based on this tree I want ...
0
votes
1answer
58 views

Is there a good reason for hiding the leaf object entirely in a composite object, and limiting access to it?

So for example, here is an illustration of how the current code works. I know this may not be a perfect representation of a composite, but I wasn't sure what else to call it: public interface ...
0
votes
1answer
506 views

Composite Design pattern & common descendant methods

I am using a composite pattern as shown in the class diagram below. Basically my primary leaf (an Allocation) has a single property, Duration, that I want to accumulate in various composites. I also ...
6
votes
1answer
501 views

composite pattern design questions

I have a question about two operations you commonly see in an example Composite class diagram. * GetDescendents * GetChild(int) A common example being Files and Directories, I'll stick with that. ...
1
vote
1answer
153 views

Composite iteration failure (.net)

Below is a first attempt at using a Composite pattern. It works in the sense that I can arbitrarily nest and get the correct results for the Duration property, with is the focus of the composition. ...
1
vote
2answers
320 views

beginner implementation of Catamorphism for non binary trees versus the Composite Design Pattern

For the moment, the dream still goes on, at each haskell concept I learn I am more enticed. Yet I havent completely fulfilled working on this precious @luqui's answer to my previous question about ...
1
vote
1answer
538 views

Examples of implementetional composite pattern for graphic primitives

Can you tell me where I can see some examples (articles, opensource projects) of implementetional composite pattern on C++ (desirable full source code), on an example of problem: graphic primitives - ...
0
votes
1answer
355 views

Using the composite design pattern to operate on objects of different type, is there a way to prevent an object from being operated on more than once?

I'd like to use the Composite design pattern in C++ to be able to create and operate on groups of objects. A problem I've encountered is that since leaves and composites are treated the same, and ...
0
votes
4answers
230 views

Is this design pattern logical?

The following C# is abstract so you can see the structure of what I am trying to accomplish This is the Composite (GoF) Pattern I am using to represent a FileSystem tree interface IComponent { ...
1
vote
2answers
968 views

Composite pattern in Swing

This is basically a architectural question. I want to implement composite pattern in handling Swing components; that is, I want to combine several components with their listeners and logic behind a ...
0
votes
1answer
164 views

Is there a design pattern that would be useful in creating and populating a complex hierarchy of objects generated from an xml schema?

I have a composite object that was generated from an xml schema that I need to populate with data from a database. The generated code doesn't enforce the schema's rules regarding required elements, ...
0
votes
1answer
824 views

Composite + Chain of Responsibility example

Can anyone give a practical example of using the design patterns Composite and Chain of Responsibility together? Thanks
5
votes
2answers
888 views

Is the Composite Pattern SOLID?

the leaf in the composite implements the Component that has the Add Remove and GetChild methods that he is never going to use (violation of the Interface segregation) so is the usage of composite ...
0
votes
2answers
501 views

python how to create different instances of the same class into an iteration

My problem is: I would like to add to a Composite class Leaf objects created at runtime inside a Composite routine like this: def update(self, tp, msg, stt): """It updates composite objects ...
1
vote
4answers
325 views

Inheritance in a composite structure

i have a problem related to the design of a composite structure. I have an Expression abstract class that describes a generic mathematical expression. The idea is that an expression can be an atomic ...
1
vote
4answers
147 views

What are the options for finding nodes when using the composite pattern?

Apart from recursively querying each node, are there any other options for searching for a node given some identifier?
8
votes
3answers
814 views

Iterating hierarchy of nodes - Visitor and Composite?

Let's imagine I have a collection of nodes that I use for my Renderer class later on. Then I have a Visitor class that can visit node or whole collection. It's simple because my collection of nodes ...
1
vote
2answers
1k views

Composite Pattern Iterator without recursion

Has anyone written or thought about writing an iterator for a composite (tree) structure without using recursion? If so can you share your ideas? Thks Edit: I was thinking of Java for lang.
3
votes
2answers
1k views

Use Linq to Query for terminal/Leaf nodes in Hierarchical Table/Composite pattern

I have a self-referencing table with an Id, CategoryName, and ParentId. It's a typical scenario of a hierarchy table of categories that can themselves be divided into categories that DB experts tell ...