Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
397 views

The composite pattern/entity system and traditional OOP

I'm working on a small game written in Java (but the question is language-agnostic). Since I wanted to explore various design patterns, I got hung up on the Composite pattern/Entity system (which I ...
3
votes
1answer
55 views

is this a valid interpretation of the composite pattern?

One recommendation I get out of the composite pattern is to provide default operations that handle inappropriate child management operations for a Leaf node (ie, throwing an exception on AddChild, ...
2
votes
2answers
557 views

Composite Pattern Simplified

What do I lose by not implementing the Component and treating everything as a Composite? I have given up the implementation for Leaf node: I.e. class Component : IComponent { /*...*/ } Now ...
2
votes
3answers
442 views

How do you deal with composite pattern when using hibernate and domain-driven design?

Does hibernate has support for hierarchical data in a database where you use a parentId you use a parentId and an orderId you use Modified Preorder Tree Traversal
1
vote
1answer
208 views

Problem serializing an object tree with SplObjectStorage

I have implemented a simple Composite pattern using SplObjectStorage, like the example above: class Node { private $parent = null; public function setParent(Composite $parent) { ...
1
vote
2answers
211 views

Composite pattern with different types of objects

I'd like to use the Composite pattern for forwarding calls received by one object to others. At present, objects on the receiving end are all of the same Abstract type but the snag is that they ...
1
vote
2answers
396 views

Composite pattern in C++ problem

I have to work with an application in C++ similar to a phone book: the class Agenda with an STL list of Contacts.Regarding the contacts hierarchy,there is a base-class named Contact(an abstract ...
1
vote
1answer
439 views

C# Composite pattern and Database Access

Suppose I have a composite class PharmaProduct(which represents the product hierarchy of a pharmaceutical company) and a database table for it. I have thought two ways to load the data into a ...
0
votes
1answer
235 views

Composite Pattern with OrmLite for Android

I am programming an Android app and using ormLite for the database. I want to use the Composite Pattern for some DB items. I wrote the following code: Foodstuff package ...
0
votes
2answers
52 views

null pattern and composite pattern don't play nice together

In this composite tree I am keeping a reference to the parent node for flexible tree traversal. I don't want to have to check the parent for a null reference all the time but if I make a NullNode ...
0
votes
1answer
349 views

Single class Composite Pattern mapping with Hibernate

I wonder how to map single class composite pattern with annotations in Hibernate? An human object can contains children, and each child can have his/her own children. Thank you. Human domain class: ...
0
votes
1answer
281 views

How to best propagate change notifications upwards a hierarchical structure for binding?

If i have a folder-like structure that uses the composite design pattern and i bind the root folder to a TreeView. It would be quite useful if i can display certain properties that are being ...
0
votes
3answers
550 views

Composite Pattern

I have question regarding composite pattern. Is the base class "Component" act like a pointer to point leaf object in "Composite" class? Edit: Let me ask my question in following words. "What is the ...