3
votes
7answers
110 views
Virtual Methods or Events in C#
I'm currently writing a little C# library to simplify implementing little physical simulations/experiments.
The main component is a SimulationForm that runs a timer-loop internally and hides …
3
votes
3answers
67 views
OOP and Dynamic Typing (not Static vs Dynamic)
What OOP principles, if any, don't apply or apply differently in a dynamically typed environment as opposed to a statically-typed environment (for example Ruby vs C#)? This is not a call for a Static …
2
votes
1answer
32 views
Why does UITableView make so many calls to its delegate & datasource?
Anyone care to shed some light on why UITableView makes so many repeat calls to its delegate & datasource as it's being setup? Just looking at one I'm working on now I see that …
3
votes
3answers
121 views
Object Oriented Design issue
Hey,
I have been designing a site locally in PHP 5, but have come across a few design issues I'd like advice now.
Currently there are three features of the site and each feature has a class . These …
1
vote
7answers
133 views
Modelling a car object (and its parts such as engine)
I am developing a class library which will include the object Car.
The dilemma is, Car itself will be a class with fields such as Registration Number, and other general information on the car.
But a …
5
votes
6answers
132 views
Design pattern question for maintainability
I'm not sure if there is a pattern that should be used here but here is the situation:
I have a number of concrete classes that implement an interface:
public interface IPerformAction
{
bool …
0
votes
2answers
28 views
Testing and mocking with Flex
I am developing a "dumb" front-end, it's an AIR application that interacts with a "smart" LiveCycle server. There are currently about 20 request & response pairs for the application. For many …
0
votes
2answers
27 views
What is the right code pattern for NSNumberFormatter?
What is the right code pattern for NSNumberFormatter?
There are many example on the Internet (including this one: http://mac-objective-c.blogspot.com/2009/04/nsnumberformatter-some-examples.html) …
2
votes
3answers
167 views
How to avoid circular notifications in MVC in Delphi?
I am trying to use the Model-View-Controller pattern in a small application. The model contains some data and a selection like this
TModelSelection = record
CurrentItem : TItem;
end;
TModel = …
0
votes
1answer
94 views
Which Design Pattern / RTTI
I'm looking for the best way to dispatch objects to the correct "target" object.
I have a base command class: Cmd, two sub-classes: BufferCmd and StateCmd. Command "GotoLine" is derived from …
0
votes
3answers
54 views
How to build a Predicate or Criteria builder for your DAL that understands lambdas ?
I am working on a Data Access Layer Design, we have not finalized what ORM we are going to use as of yet.
I am leaning towards NHibernate + FluentMappings + Nhibernate.Linq but depending on project …
2
votes
2answers
57 views
Stuctures of Complex and enterprise level applicaitons
I have a problem about structures of the complex applications .Because my knowledge background does not come from education , i have had always problem about application's layers , design patterns and …
1
vote
8answers
156 views
is there a design pattern that isolate ‘methods’ from member?
basically, i want to have something like:
class DataProcessor{
};
however, in the future, i will need to pass DataProcessor's instance to some other functions, because DataProcessor contains …
0
votes
2answers
29 views
Advantages of Domain object representing only elements of one type over being able to represent several different types of elements
hi
1) As far as I’m aware, each domain object instance ( at BLL layer ) should completely represent an element of the domain ( an employee, book, car etc ).
So what is an advantage of having …
1
vote
3answers
83 views
Is this a sane implementation of constructor injection?
Following on from my question on service locators I have decided to use constructor injection instead. Please consider the following code:
<?php
interface IAppServiceRegistry {
…
