3
votes
3answers
49 views
Optimising and Redesigning an existing Application
This seems to be a popular complaint on many programmer forums so I wouldn't be surprised if this question was already on here. Sorry if it has already been answered but I've searc …
0
votes
3answers
132 views
Misuse of Observer Pattern?
I have a Car object which contains a latitude field and a longitude field. I use the observer pattern so that any time either of these fields change in my application, my car obje …
0
votes
3answers
53 views
Dependency Injection and Generic Collections
I'm going round in circles at the moment trying to get the pattern right for using Dependency Injection with a number of IEnumerables.
I have three types of object that I want to …
3
votes
3answers
63 views
Looking for advice for implementing a versioning feature in our application.
I am starting a project to create an "object versioning" feature for our software (.NET 3.5 / SQL Server 2008), basically it needs to do this:
a user is looking at a customer:
l …
5
votes
3answers
66 views
Is there a data storage pattern similar to mipmaps in graphics?
We've got a bunch of data the users may want to view windows of and do so quickly. They may want to look at a window of the data that is a day, a week, a month, or an arbitrary beg …
9
votes
7answers
256 views
Is there a design pattern for dealing with large datasets over the internet?
I am looking for a design pattern that handles large data sets over the internet, and does periodic updating of these objects. I am developing an application that will display tho …
3
votes
8answers
159 views
How to teach Design Patterns to a team
I'm a huge fan of the classic Design Patterns book. I very diligently worked to learn most patterns and how they are used (and when they should be avoided). However, I frequently …
1
vote
4answers
75 views
How are Models (in MVC) and DAOs supposed to interact?
How are models and DAOs supposed to interact? I'm in the process of putting together a simple login module and I'm unsure where to put the "business logic." If I put the logic with …
15
votes
17answers
717 views
Design pattern for class with upwards of 100 properties
What advice/suggestions/guidance would you provide for designing a class that has upwards of 100 properties?
Background
The class describes an invoice. An invoice can have upwar …
1
vote
7answers
200 views
Should I use a singleton?
This is a semi-related question to question to the following question I just raised:
http://stackoverflow.com/questions/1671259/utility-classes-good-or-bad
After determining that …
2
votes
2answers
27 views
Chunky interface meaning
In the book of application architecture design, which I'am reading, I've found the following statement:
"To reduce round trips and improve
communication performance, design
…
0
votes
1answer
36 views
MVP Vs MVVM - why
Hello,
I was using MVP when I was working with winform. but I moved to MVVM when i started playing with WPF or Silverlight.
The only thing that I noticed is that we don't need t …
0
votes
2answers
60 views
Class design ideas for state machine like object.
I'm writing a state machine like object. Looks like
Class A:
vector<Actions> m_enter_actions;
vector<Actions> m_exit_actions;
public:
ClassA....
~ClassA
Se …
3
votes
6answers
152 views
Design Patterns in Java API
I am learning Java Design Patterns and would like to know where some of these patterns are being used in Java Libraries themselves.
Decorator Pattern - java.io Streams
Adapter Pa …
8
votes
6answers
341 views
Is Meyers implementation of Singleton pattern thread safe ?
Is the following implementation, using lazy initialization, of Singleton (Meyers Singleton) thread safe?
static Singleton& instance()
{
static Singleton s;
return s; …
