Tagged Questions

1
vote
2answers
16 views

Understanding UML of DoFactory Design Pattern - Decorator

I am trying to understand UML diagram describing Decorator Pattern at link below http://www.dofactory.com/Patterns/PatternDecorator.aspx I don't understand why there is a "Aggreg …
2
votes
2answers
45 views

Adding validator symbol next to control on a Delphi form.

Hi, I have an application, where there are many forms which follow visual form inheritance. Every form has standard delphi components as well as custom components. Form validatin …
1
vote
2answers
27 views

IRepository and relational data

I'm wondering what the recommended approach is for dealing with relational data with the IRepository pattern. My database has the following tables with column names in parenthesi …
18
votes
18answers
566 views

When should we create a new method?

I'm trying to find out if there is a consensus on when we should create a new method in our code. For example should we only create a new method/function if we are going to be usin …
0
votes
1answer
48 views

Looking for concept for managing game level views, level selection views, preferences view, storing levels, environment variables.

I'm developing a puzzle game application - watch on youtube - for iPhone, and the actual "in-game" part is almost done. It is a separate Class (subclass of UIView) what initializes …
1
vote
4answers
42 views

interpreting string of commands

say you have to interpret a sting of command arguments like AABBCDEEFF... and the idea is that each character represents a command for which you have to take some actions on the cl …
0
votes
5answers
112 views

java singleton pattern, should all variables be class variables?

If a class implements a singleton pattern, should all the variables be declared static? Is there any reason they shouldn't be declared static? Does it make a difference?
1
vote
2answers
58 views

Passing around base class pointers

Scenario: I have the following defined classes. class Baseclass { }; class DerivedTypeA : public Baseclass { }; class DerivedTypeB : public Baseclass { }; // ... and so on ... cl …
0
votes
4answers
34 views

How to pass external variables to a private javascript outer closure function?

I may have made some poor design choices on this one. I have several objects being instanced like this. core.modules.trial = function(sandbox){ return{ alert_private : funct …
4
votes
5answers
48 views

Challenges and Best Practices for Failing Over Services

Hi everyone, Does anyone know of any established best practices for running Windows services (in my case, developed in .NET) such that they will (automatically) fail over correctl …
4
votes
7answers
370 views

What C++ idioms should C++ programmers use?

Question What C++ idioms should C++ programmers know? By C++ idioms, I mean design patterns or way of doing certain things that are only applicable for C++ or more applicable for …
2
votes
4answers
83 views

Class composed of other, larger, classes problem

Imagine you have a class with dozens of private member variables. Each member variable has a public getter and a setter function: class Foo { public: int GetA() const { return …
0
votes
2answers
114 views

Representing game states in Tic Tac Toe

The goal of the assignment that I'm currently working on for my Data Structures class is to create a of Quantum Tic Tac Toe with an AI that plays to win. Currently, I'm having a …
18
votes
25answers
809 views

How Much Designing Should Go On Before Any Coding Takes Place?

I'm currently in school and for my Senior Project we have to spend 1/3 terms just doing UML diagrams and other tedious documentation for our project. This involves alot of designi …
0
votes
2answers
40 views

Building core shop framework in Rails. Suitable or not?

I work at an in-house IT department for company running 10 or so only shops of varying complexity. The shops code has been written over the last 8 years, each shop a new branch gro …

1 2 3 4 5 118 next
15 30 50 per page