-1
votes
2answers
53 views
A Bridge Pattern example
Hi all,
I had spend some time on this Bridge pattern example from wikipedia, however, i still do not understand what is this bridge pattern trying to explain.
interface DrawingA …
0
votes
1answer
24 views
Ideas for implementing a VFS
Hi all,
I have multimedia files and its metadata stored in a RDBMS (actually, the actual media files are stored in the FS, but let's not dwell on that).
I would like to present a …
1
vote
0answers
11 views
anemic domain model versus domain model
Being confused again after reading about this anti-pattern and the many concerns about it here on SO.
If I have a domain model and capture the data that must be persisted in a dat …
1
vote
3answers
74 views
building a factory with object repository in C++?
I want to create a factory for creation of objects implementing an abstract interface, which would return a reference to the object that is kept internally, and objects are not rep …
0
votes
5answers
54 views
Design pattern for adding attributes to a base class
I am sure there is a clever way to handle this, but I just can't get it right in my head. Here is the scenario:
I have a base class with about 30 properties. Say that I have a p …
0
votes
0answers
8 views
Best MVC design for rendering a grails template and passing data to this template?
Hi,
I have a template that renders a chart according to a given list (retrieved from my domain layer). This template is displayed several times (with a different list) on a same p …
1
vote
2answers
81 views
Table module samples
Hello,
I'm looking for some good open-source sample applications that use the Table Module pattern to organize the business logic (can be any language).
Any suggestions?
0
votes
6answers
144 views
Special interaction between derived objects (i.e. mutiple dispatch)
So, I have a list of base class pointers:
list<Base*> stuff;
Then, at some point one of the objects will look through all other objects.
Base * obj = ...; // A pointer fr …
0
votes
1answer
35 views
inheritence how to return the subclass object?
Base Class B
|
|
----
| |
| |
D1 D2
public static object GetDerivedClass(Type t1, MyProcess p1)
{
DerivedClass D1 = null;
DerivedClass D …
0
votes
3answers
104 views
Better Than MVC Pattern
I know there has been much shout about the goodness of MVC pattern.
My question is that is there any pattern better than MVC to be
implemented in PHP?
I don't know but other patte …
0
votes
2answers
69 views
Design pattern for abstracting existing objects
Hi there, i want to create an abstract representation of an existing object. For this example i want to wrap the functionality of a System.Windows.Forms.TreeNode. I started by cr …
1
vote
7answers
462 views
Do you know any patterns for GUI programming? (Not patterns on designing GUIs)
I'm looking for patterns that concern coding parts of a GUI. Not as global as MVC, that I'm quite familiar with, but patterns and good ideas and best practices concerning single co …
3
votes
7answers
431 views
Least favourite design pattern
OK, I'm not looking for anti-patterns - I'm looking for things that aren't really patterns, or perhaps patterns that have been abused.
My personal least favourite is the "Helper" …
1
vote
1answer
23 views
SRP applied to a workflow example: how to structure the classes in a sensible way
I have a problem with deciding about class responsibilities.
I have 3 html-forms:
For each form there is a html template containing some text and a marker for the form to be incl …
1
vote
2answers
55 views
Is Dependency Injection Chaining an Anti-Pattern?
Here is the problem, lets say we are making a video game and want to use Dependency Injection. Here is what we have:
Game Class // This is just the code to keep track of the over …
