A design pattern is a general reusable solution to a commonly occurring problem in software design.

learn more… | top users | synonyms (2)

0
votes
0answers
2 views

Modular desing and intermodule references

I'm not so sure the title is a good match for this question I want to put on the table. I'm planning to create a web MVC framework as my graduation dissertation and in a previous conversation with my ...
-6
votes
0answers
30 views

Interactive way to learn javascript? [closed]

Hi! My choices are design primary and frontend secondary, same order applies to experience. Seeing that js as the prefect glue between them and underlying so many web apps. Even in advanced Ai* ...
1
vote
0answers
22 views

How to practice SOLID principle of OOP design?

I'm new to SOLID principle but I understand it. My main problem is having a hard time designing my classes to follow the SOLID specially the Dependency Inversion. Sometimes it's easy to write the ...
0
votes
1answer
24 views

Design patterns for data source independent model?

Say I want to build an application in which models could have different data sources (like MySQL, some API, XML, etc). What would be the most common approache(s) in order to implement something like ...
-1
votes
2answers
48 views

Why some Collections extends Abstract also Implements interface? [duplicate]

I am curious why some collection classes has extended abstract class and at the same time implementing interfaces there corresponding collection interface like List,Set etc.?. Why not only extending ...
0
votes
2answers
24 views

Game Design MVC - Controller Architecture

Reading an artile on gamasutra had me thinking of how should the controller in an MVC game be designed as: Option 1: The controller should act on the model, Eg: whenever a key is pressed ...
4
votes
2answers
51 views

In proper MVC, does everything have to be a model, view, or controller?

Something I have been wondering but somewhat too embarrassed to ask until now: In "proper" MVC (strictly adhering to the pattern), does everything have to be a model, view, or controller? If not, can ...
0
votes
1answer
28 views

How to avoid parallel trees [duplicate]

In many applications I use the repository pattern and a bunch of classes representing my model. The repository accomplishes reading and writing (CRUD) to a database leveraging my own model objects. ...
2
votes
2answers
49 views

C# Looking for pattern ideas - Inheritance w/ constructor issue

I have a multiple layered application I'm rewriting using Entity Framework 4 w/ Code First. The important things: In the data layer, on my context, I have: public DbSet<MobileSerialContainer> ...
2
votes
2answers
34 views

Correcting implementation of a Factory Method with parameters

I'm making a solution for a program that builds robots with different types of parts(C#). In this case I have two types that share some attributes and both types of part inherit from an abstract ...
0
votes
0answers
10 views

design a linear classifier by minimizing mean square error for given dataset

I am solving a problem about pattern recognition and I can not recognize the solution. I want to design a linear classifier by minimizing mean square error for given dataset as follows: x1 x2 x3 ...
0
votes
1answer
55 views

Override on Field initialization

For the following example, public abstract class RecordData { private MyDate mDate = new MyDate(new SimpleDateFormat(""yyyy-MM-dd HH:mm:ss")); public Date getMyDate() { return ...
-4
votes
1answer
38 views

How does Codeschool or other online interactive platforms work? [closed]

There is question for me, does anyone know how online interactive platforms are working!? What design pattern they use? How they check some codes are correct or not!? Do they run the code for ...
0
votes
2answers
48 views

Naming conventions pattern: Collection and Collections? [closed]

not asking the functionality of Collection or the Collections classes in Java. i see this pattern everywhere where you have a class called e.g. "Animal" and another class called "Animals". is there a ...
-1
votes
1answer
55 views

Differences between MVC pattern and other 2 patterns [closed]

Can you tell me if it is Factory, Strategy or MVC design pattern? public interface MainObject<T> { void add(); T get(); } class Person1 : MainObject<Person1> { public ...
1
vote
0answers
28 views

Re-architecting a classic inheritance design [migrated]

I have the opportunity to rewrite a core piece of a project that is inheritance-heavy and feels increasingly restrictive in how it is designed. The scenario is pretty simple, imagine an application ...
0
votes
1answer
53 views

Overriding a methods internal behavior

There is a class A that implements a method doBlah. I have a class B that subclasses A and has an @Override method doBlah. After I perform some simple manipulation in B.doBlah, I call A.doBlah. ...
0
votes
0answers
11 views

How should one adapt the result of a python concurrent.Future while maintaining the Future interface?

Suppose I have functions that look like this: import concurrent.futures tp = concurrent.futures.ThreadPoolExecutor(5) def run(): #Suppose this is a function in a library that takes a long time ...
0
votes
1answer
29 views

Splitting a View into several files in Swing MVC

My project follows the MVC pattern. To make it quick, I will only post the code relevant to my problem (which doesn't involve the Model). Explanations below. Controller.java : public class ...
-1
votes
1answer
56 views

avoiding diamond in multiple inheritance [closed]

i have to implement data structures that support abstract Numbers Collection is a collection of numbers sorted is a sorted collection list is a list collection of numbers (include duplicates) set ...
0
votes
1answer
54 views

asp.net mvc ways for generating dynamic form fields at runtime

this is the more or less the schema i want to generate my dynamic form on based on the fields above. i am going to add the direction , max size, default value and like wise some more fields in it. ...
3
votes
1answer
75 views

Java regular Expression to replace System.out.println patterns

We are developing an eclipse plugin tool to remove sysout statements from the workspace projects. We are able to achieve our goal only partially. If the sysouts are in one line we are able to delete ...
2
votes
1answer
83 views

Choosing method implementation at runtime

I'd like to configure the behaviour of objects at runtime by choosing a method to call out of a given set. Consider this simple example: class Parameter; class Conf; class Obj { public: Obj( ...
-1
votes
4answers
27 views

How to write a Regex format to accept a query string and a date?

I have a query string with a datetime value and input of like "?sincemodified=2013-04-02T08:34:12Z". How to write an optional Regex format to accept above? I wrote the below but failed: ...
0
votes
1answer
19 views

PubSub Design Pattern with publisher controlling who can subscribe

My problem is that i need to make a pub-sub mechanism that will give the publisher the option to prevent some subscribers from getting any messages. This option should be managed by the publisher so ...
0
votes
2answers
66 views

Explanation Dependency Injection [duplicate]

Can anyone help me explaining in 'easy words' When should I use dependency injection. Why should I use it? ( Should I use it in combination OR not with MVC?) What does in it easy words ? How is it ...
0
votes
3answers
77 views

Understanding application logic in MVC

In my effort to understand MVC in a simple way (I'm trying to make a demo application of my own), I've followed Symfony2's Symfony2 versus Flat PHP material, I've changed some stuff along the way ...
-1
votes
3answers
68 views

is using events in interfaces a bad practice [duplicate]

Events are compiler implementation for observer pattern. And also I think it is not very logical to add some contracts for design pattern implementation in an interface. so it seems that adding events ...
0
votes
0answers
11 views

Data Sharing with Proxy pattern issue?

I am writing a library on top of another library in c++. I have many classes that actually wraps the objects from the library objects that I am using. Apart from wrapping library objects my objects ...
3
votes
2answers
35 views

What is the story of the Observer Design Pattern?

I have been investigating about the observer pattern for an assignment. So far, I have come to the conclusion that it first appeared in a book written by a group of people called "The Gang of Four". ...
1
vote
4answers
44 views

Path for separating out the view layer from an existing winforms app?

Given: Our organization has a standard windows form application The form and business logic are intertwined -- i.e. the Autonomous View. We know that the Autonomous View pattern makes writing unit ...
1
vote
0answers
72 views

Implement Iterator design pattern using JDBC

I'm tackling the following question: The iterator design pattern is one that has strong encapsulation. As an example a library wants a book management system. A class for the books and it's ...
1
vote
4answers
70 views

AWK - Is there a way to match partially a numeric string?

I'm having some trouble with matching some lines with a numeric constant (given by an argument). For instance, given the following data in a file: 0.6880228954232877 0.2284901699470367 ...
0
votes
0answers
28 views

XML Parsing Structure for App

I am working on an android app that makes various requests to some servers and parses the xml response from them. I am a novice developer and would really like to structure my app in a easy to ...
-2
votes
2answers
27 views

Strategy Pattern: Instance or Object.class?

This will be more like an ethic question, but I'm pretty curious about it. So, there is the Strategy Pattern, where you have a Strategy-Interface with several implementations and a bunch of methods, ...
10
votes
6answers
359 views

C++ Interface vs Template

I have 2 solutions for the same problem - to make some kind of callbacks from one "controller" to the used object and I don't know what to chose. Solution 1: Use interfaces struct AInterface { ...
0
votes
2answers
36 views

Extendable design pattern based on database records or enum values

I am working on a project that needs to be very extendable. It is about performing actions on the basis of a string code or an enum value. I am now using a switch-case statement and calling the ...
0
votes
1answer
20 views

How to use factory design pattern with GenericDao?

I want to apply a generic design pattern for my dao layer, such that i can switch between Third party ORM easily (Hibernate,JPA,etc..) apparently we have a common methods for all dao's like ` public ...
0
votes
4answers
68 views

How to create object more than once with dependency injection

I'm using C#.Net, but any relevant example is very much acceptable. I have 2 winforms, let's say ListFrm and DetailFrm, in which everytime user click on a button in DetailFrm, a new ListFrm will ...
4
votes
2answers
51 views

Advice Design Pattern to add multiple fees and item wise list

I need to write application in that I have calculation like this: Basic Fee Registration Fee; registration % ( basic fee) will vary based on property . Sales tax; ( basic fee + Registration Fee ) ...
0
votes
1answer
34 views

Declaring Facade Class in Dependency Injection

I am using Dependency Injection. Say that I has an OrderService class like this: public class OrderService{ public OrderService( IOrderValidator validator , IOrderRepository ...
-2
votes
0answers
39 views

Traffic Light - Design Pattern - OO Design

I am trying to learn and understand design patterns using Java as programming language. I need to implement/simulate Traffic light system. Can anyone guide me on good use of OO design in this ...
2
votes
1answer
48 views

What C# class pattern should I use for mobile client / server objects [closed]

I am developing a client / server business software system using a custom HTTP based design that works similarly to CSLA.NET. What I will be doing is creating client and server objects where client ...
0
votes
1answer
44 views

Class design: how to add sequencing or alternating logic to API

My classes are like this: class FB_I { public: virtual void foo() = 0; virtual void bar() = 0; }; class TEE_I { public: virtual void tee() = 0; }; class C: public FB_I, public TEE_I ...
0
votes
2answers
28 views

What is preferred .NET 4.5 C# design pattern for windows service which polls DB table record and processes it based on type?

The requirement is to re-write the current windows service app (.net 2.0 with c# to .net 4.5 with design pattern) which is used to poll a db table for pending record, if any pending record, take it ...
4
votes
4answers
154 views

Generic Repository with Data Access Layer

I come from a procedural background so please bear with me. I am creating a new project using business objects (Employee, Product). Due to constraints, I am not using LINQ to SQL or any ORM Mapper. I ...
0
votes
0answers
58 views

Unit test fluent nhibernate repository with in memory sql lite - no such table error

I'm trying to write unit tests for a repository pattern usinf fluent nhibernate. I chosed to use Inmemory sql lite database in order to avoid sql server access (which can be done for integration ...
0
votes
1answer
29 views

Do this Adapter Pattern example satisfy the GOF definition?

I need to know if this example meets the intention of the Adapter Pattern. This example is intended to meet the Pluggable Adapter Pattern but it adapts two interfaces: interface ITargetOld { ...
3
votes
0answers
26 views

Object Oriented Programming in JavaScript. Is there life without it? [migrated]

At our company we have pretty large body of PrototypeJS based JavaScript code, which we are porting to jQuery for several reasons (not really important here). I'm trying to set up coding guidelines to ...
-3
votes
0answers
34 views

ASP.NET pattern for editing database tables with security [closed]

I am trying to show a drop down list / menu of tables that users can insert or amend rows. How to customize this list based on logged in AD/windows user, without setting security at table or db layer? ...

1 2 3 4 5 260