Tagged Questions
The factory-method tag has no wiki summary.
13
votes
10answers
3k views
What Are Some Examples of Design Pattern Implementations Using JavaScript?
I'm a moderately skilled programmer using JavaScript but I am no guru. I know you can do some pretty powerful things with it, I just haven't seen much other than fairly basic DOM manipulation. I'm ...
8
votes
2answers
2k views
Design Patterns: Abstract Factory vs Factory Method
Note: Questions are at the end of the post.
I have read the other stackoverflow threads regarding Abstract Factory vs Factory Method. I understand the intent of each pattern. However, I am not clear ...
6
votes
7answers
295 views
Am I overdoing it with my Factory Method?
Part of our core product is a website CMS which makes use of various page widgets. These widgets are responsible for displaying content, listing products, handling event registration, etc. Each widget ...
5
votes
2answers
676 views
How to use factory classes with linq for sql?
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 factoryresult" as ...
4
votes
2answers
923 views
Differences between Abstract Factory Pattern and Factory Method
I know there are many posts out there about the differences between these two patterns, but there are a few things that I cannot find.
From what I have been reading, I see that the factory method ...
4
votes
3answers
100 views
Can anyone spot the issue with this VB.Net code?
I'm writing some code in VB.Net which I hope demonstrate to colleagues (not to say familiarise myself a little more) with various design patterns - and I'm having an issue with the FactoryMethod ...
4
votes
2answers
237 views
Smalltalk equivalent of a factory method?
Are factory methods used in Smalltalk, and if so, how should one go about writing one, as opposed to how they would in Java, for example?
Thanks.
4
votes
5answers
381 views
Is this a good factory method implementation?
I'm working on a module that requires a strictly decoupled interface. Specifically, after instantiating the root object (a datasource), the user's only supposed to interact with the object model via ...
4
votes
6answers
967 views
Is a switch statement applicable in a factory method? c#
I want to return an Interface and inside a switch statement I would like to set it. Is this a bad design?
private IResultEntity GetEntity(char? someType)
{
IResultEntity entity = null;
...
4
votes
7answers
893 views
Can I implement the Factory Method pattern in C++ without using new?
I'm working in an embedded environment (Arduino/AVR ATMega328) and want to implement the Factory Method pattern in C++. However, the compiler I'm using (avr-gcc) doesn't support the new keyword. Is ...
3
votes
1answer
217 views
Factory Method Implementation
I was going through the 'Factory method' pages in SO and had come across this link.
And this comment. The example looked as a variant and thought to implement in its original way: to defer ...
2
votes
3answers
144 views
Parametrized factory in a factory pattern - does any other way exist?
I am reading Go4 design patterns book and currently looking at factory method pattern. The book mentions on Pg:110
"Another variation on the factory
pattern lets the factory method create
...
2
votes
1answer
266 views
Using static factory classes to generate GUI components - How and where to add the required listeners?
I would like to use factory classes and methods to generate GUI components, but I don't know how and in which class the various listeners should be declared and added to the components.
If I have a ...
2
votes
4answers
242 views
Is factory method proper design for my problem?
here is my problem and I'm considering to use factory method in C++, what are your opinions ?
There are a Base Class and a lot of Subclasses.
I need to transfer objects on network via TCP.
I will ...
2
votes
2answers
333 views
Does the Factory Method pattern violate the Open/Closed principle?
Does the Factory Method pattern (not to be confused with the Factory or Abstract Factory patterns) violate the Open/Closed principle?
Update:
To clarify, I'm referring to the scenario where a ...
1
vote
1answer
63 views
factory create method in C#?
I am working on an API which supplies some ActiveX COM Object and I read these warning below:
"You must use the factory “create” methods to create the COM objects in this section. Once a COM ...
1
vote
3answers
113 views
Good source code that could gives me head start on factory design pattern on c#
I feel that I should start using the factory method design pattern on some of my code. Here is what I am doing;
The below code is my generator class for Accom namespace:
namespace Accom {
...
1
vote
1answer
215 views
Factory method UML diagram clarification
I was going through the factory method pattern describe here. I didn't quite get the meaning of the arrows marked from Application to Document and from MyApplication to MyDocument. Can anyone help to ...
1
vote
0answers
241 views
C# objects Xaml factory method for XamlWriter
My class uses an image as Property (public Image myImage). When this class is serialized (XamlWriter) it works fine, reading it back gives an exception:
'No matching constructor found on type
...
1
vote
1answer
69 views
method factories which take class attributes as parameters
I'm finding it useful to create "method factory functions" that wrap a parametrized object attribute in some logic.
For example:
"""Fishing for answers.
>>> one().number_fisher()
'one ...
1
vote
2answers
384 views
How can I create a generic constructor? (ie. BaseClass.FromXml(<param>)
I'm not sure how to describe this but I'm trying to create a base class that contains a shared (factory) function called FromXml. I want this function to instantiate an object of the proper type and ...
0
votes
1answer
49 views
parametrized Factory Method Pattern
The explanation is long, but the examples are very simple and basic.
I would like to create a Reader object through a Factory Method Pattern, because actually i have an IniReader and an XmlReader, ...
0
votes
1answer
78 views
PHP Strict standards: what's wrong with this code? [closed]
Possible Duplicate:
Why does PHP 5.2+ disallow abstract static class methods?
Why can't you call abstract functions from abstract classes in PHP?
I'm running this code on PHP 5.3.8:
...
0
votes
2answers
79 views
Using a delegate as “factory method” for unit testing in C#
The problem
Let's "draw" a picture of the situation:
I have a SUT. (a good thing to have :P )
I can inject some dependencies on my SUT.
In a method I do a: new ...
0
votes
1answer
55 views
Google App Engine Entity Manager Configuration with Spring 3.0
I'm trying to write a Spring configuration for some basic Google App Engine services. In particular for the EntityManagerFactory and Entity Manager.
To create an EntityManagerFactory from Java code:
...
0
votes
5answers
118 views
factory method design pattern
According to the book:
The essence of the Factory Pattern is to "Define an interface for
creating an object, but let the subclasses decide which class to
instantiate. The Factory method lets a ...
0
votes
3answers
812 views
Spring and passing parameters to factory-method in runtime
The documentation of method context.getBean(name, user) says
Allows for specifying explicit constructor arguments / factory method
arguments
but no matter what I do (tried everything), with ...
0
votes
1answer
757 views
Autowiring of beans generated by EasyMock factory-method?
I have a problem that seems really strange to me. I have the following setup:
An interface:
package com.example;
public interface SomeDependency {
}
A spring component:
package com.example;
...
0
votes
1answer
366 views
factory method pattern in C#
class A implements IC
class B implements IC
class Factory has a method GetObject(int x); x=0 for A, x=1 for B.
How can I force the usage of Factory.GetObject method to create objects of type A and B ...
0
votes
3answers
138 views
can someone give me an example code for factory method and singleton design patterns in C? [closed]
most simple you can think of,
but in plain C (not C# or C++....)
thanks
0
votes
1answer
30 views
How do I get the type of the depender when registering components with the UsingFactoryMethod() of Castle?
I'm struggling a bit with getting my bindings correct for my Castle Windsor container. The original problem concerns log4net and named loggers and a description can be found in this question: ...
0
votes
1answer
360 views
java parameterized generic static factory
Is it possible in Java to create a static factory method/class that uses an interface as the parameterized type and return an implementing class of this given interface?
Although my knowledge of ...
0
votes
2answers
117 views
How to create a “class cluster” (factory class with instances of concrete subclasses) in Ruby?
I would like to create an abstract class which will create concrete instances depending on initialization parameter. Example:
class SomethingGeneric
def self.new(type, arg)
class_name = ...
0
votes
8answers
476 views
Factory method anti-if implementation
I'm applying the Factory design pattern in my C++ project, and below you can see how I am doing it. I try to improve my code by following the "anti-if" campaign, thus want to remove the if statements ...
0
votes
3answers
115 views
What should I do if i have a factory method which requires different parameters for different implementations?
I have an interface, IMessage and a class which have several methods for creating different types of message like so:
class MessageService
{
IMessage TypeAMessage(param 1, param 2)
IMessage ...
0
votes
3answers
448 views
Abstract Methods in “Product” - Factory Method C#
I have a simple class library (COM+ service) written in C# to consume 5 web services: Add, Minus, Divide, Multiply and Compare.
I've created the abstract product and abstract factory classes. The ...
0
votes
3answers
426 views
Factory method signature for aggregate root
I want to write a factory method to instantiate an entity that is an aggregate root.
Should the method accept the aggregated child entities and values as instantiated objects, or should it accept ...
0
votes
4answers
104 views
Should a factory method of a custom container return the newly created instance?
I have a custom collection Doohickeys indexed by keys. This collection has a factory method createDoohickey(key) and an accessor Doohickey(key). Should createDoohickey(key) return the new object or ...
0
votes
4answers
1k views
UML: Can someone explain the Factory Method diagram for me?
i dont have an idea what the broken arrow from the ConcreteCreator to the ConcreteProduct means. i searched in the internet and i came up with "Dependency". can someone explain the dependency in ...