1
vote
2answers
24 views
Code generation for composition using Eclipse
Effective Java, along with other sources suggest that we should consider using composition over inheritance. I have often found my self achieving such composition by using the Decorator pattern and …
0
votes
1answer
33 views
are scenarios/stories the new interface in BDD/TDD?
PHP is somewhat crippled since it doesn't have return types (yet). I need my code to throw an exception when X already exists. I can write this in a scenario, but I'm not able to go from the scenarios …
6
votes
6answers
223 views
Where does the idea that an object should only do one thing come from?
I'm not sure I agree with it, so I'd like to find the book or journal article behind this idea so that I can check that I understand exactly what they're saying and what context they mean it.
I think …
4
votes
5answers
167 views
Why was TDataSource created originally?
What was (or would be) the reasoning behind creating TDataSource as an intermediary between data bound components and the actual underlying TDataSets, rather than having the components just connect …
0
votes
1answer
26 views
responsibility based modeling versus class reasons to change
In this text I read
Be alert for a component that is just
a glorified responsibility. A
component is supposed to capture an
abstraction that has a purpose in the
system. It may happen that …
0
votes
1answer
46 views
Self contained classes with Qt
I've been trying to make my classes completely self contained, but I'm having some problems, which are probably coming from my missing something that everybody else knew first off...
Anyway, take …
0
votes
3answers
54 views
Software Applications Designs
Is strict OOD/Interface-based design/Aspect oriented design is desirable in case of a software application development?
Or, is it desirable to mix all of them for the ease of coding?
Are all …
2
votes
3answers
176 views
What’s the difference between “use case”, “User Story” and “Usage Scenario”?
Is there an exact, but simple and understandable defintion of the distinction between "use case", "User Story" and "Usage Scenario"?
there are quite a bunch of explanation, but right now, I see no …
2
votes
2answers
88 views
Is the set of SOLID principles missing an extra ‘D’?
Although not a pure OOD principle - should DRY also be included when thinking about SOLID principles? If not - why not?
0
votes
1answer
37 views
How to design an interface for muliply containment
Consider the following simplified demonstration:
Class X contain class Y. Class Y has public method, Y.doY Stuff().
How to design X interface which use Y methods as is?
If one append public method …
11
votes
14answers
511 views
Is it bad practice to make a setter return “this”?
Is it a good or bad idea to make setters in java return "this"?
public Employee setName(String name){
this.name = name;
return this;
}
This pattern can be useful because then you can chain …
0
votes
0answers
55 views
Database Replication OOD Pattern
Greetings fellow overflowers,
After reading on MSDN about correct strategies on how to perform database replication, and understanding their suggestion on Master-Subordinate Incremental Replication. …
2
votes
6answers
125 views
OOD / OOP Etudes / Code exercises
I've been searching the web for some time now. I am looking for small sample exercises for OOD practice (& for some internal TDD workshops).
If there is one single place, where this need is being …
1
vote
4answers
274 views
Access modifier best practice in C# vs Java
Hi All,
I understand that the rule of thumb in OOD is to minimize access to all members of a given object as best as can be reasonably accomplished.
C# and Java both seem to implement the same set …
0
votes
2answers
67 views
Architecture Design for DataInterface - remove switch on type
I am developing a project that calculates various factors for a configuration of components.
The configuration is set/changed by the user at runtime. I have a Component base class and all …
