2
votes
5answers
87 views
does a factory just return an implementation of an interface?
does a factory just return an implementation of an interface?
Is that the job?
0
votes
1answer
80 views
Is this the correct way to use and test a class that makes use of the factory pattern?
I don't have a lot of experience with the factory pattern and I've come across a scenario where I believe it is necessary but I'm not sure the I've implemented the pattern correctly and I'm concerned …
3
votes
3answers
107 views
What’s wrong with my factory?
I've got some code like this:
public abstract class Foo {
public static Foo getFoo() {
return new FooImpl();
}
abstract void DoFoo();
private class FooImpl extends Foo {
…
2
votes
4answers
99 views
.net framework - object creation - constructor vs factory
Below is an article about .net framework's use of patterns. I'm not sure I understand the bolded part in the excerpt below. Is it implying if you change the details of creating the object, you …
0
votes
1answer
73 views
Singleton in Conjunction with the Factory Pattern in PHP5
What is the best method for using singleton design pattern in conjunction with the factory method pattern in PHP5? My simplest usage scenario for this is instantiation selective database connection …
1
vote
3answers
94 views
building a factory with object repository in C++?
I want to create a factory for creation of objects implementing an abstract interface, which would return a reference to the object that is kept internally, and objects are not replicated. The idea is …
1
vote
3answers
94 views
Spring formBackingObject, Business Object Creation, and Factories
Design question for using Business Objects as formBackingObjects in a Spring SimpleFormController.
Our controller's responsibility is to allow an End User to add a new Business Object to our web …
3
votes
3answers
78 views
Why can’t I get Type.GetType() to find the type of my plugin instance referenced in app.config?
So here's the deal. I've got my solution which has a few projects in it:
A wrapper project - this is just a console app that's currently standing in for a windows service during debugging.
A worker …
2
votes
2answers
103 views
Abstract Factory Question
Hello,
I am trying to understand the Abstract Factory design pattern. I am having a lot of trouble with it. I am trying to use the following example to develop a UML class diagram:
Car designers can …
2
votes
1answer
344 views
C# Factory Pattern
I am building a search application that has indexed several different data sources. When a query is performed against the search engine index, each search result specifies which data source it came …
2
votes
3answers
125 views
Opposite factory pattern
I was wondering if there is an opposite pattern of the factory pattern. For example, when a certain object needs to be deleted some extra work needs to be done, to undo the configuration which was …
0
votes
0answers
29 views
StructureMap Configuration Per Thread/Request for the Full Dependency Chain
I've been using Structuremap for a few months now, and it has worked
great on some smaller (green field) projects. Most of the
configurations I have had to set up involve a single implementation
…
10
votes
9answers
349 views
Do setup/teardown hurt test maintainability?
This seemed to spark a bit of conversation on another question and I
thought it worthy to spin into its own question.
The DRY principle seems to be our weapon-of-choice for fighting maintenance
…
3
votes
2answers
120 views
How to use factory classes with linq for sql?
Hi,
I have a model on top of my database model and map the objects in my Repository.
However, apparently it makes a difference whether I "select new" directly in my GetUsers or "select …
0
votes
1answer
87 views
Am I Using A Factory To Promote Polymorphism?
Hello! My first question is basically asking for a code-review. Does the code I'm about to provide use a Factory to promote Polymorphism? Its written in PHP. Here are the basic requirements:
…
