0
votes
2answers
78 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 ...
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
225 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 ...
3
votes
1answer
66 views

Composition and projectiles

I'm using a composite design in my current game which works pretty well. All game objects are either instances of GameObject or are direct descendants of it... some objects implement a particular ...
4
votes
2answers
273 views

SWT user control design decision

Hypothetical question: What about this SWT design decision that to make a custom compound widget I have to subclass Composite? Is that really wise? Wouldn't it be better if SWT had a UserControl ...
2
votes
1answer
447 views

Composite pattern for GTD app

This is a continuation of one of my previous questions Here are my classes. #Project class class Project: def __init__(self, name, children=[]): self.name = name ...
1
vote
4answers
326 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
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.