Is a creational pattern, provide an interface for creating an object, but let sub classes decide which class to instantiate.
-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 ...
3
votes
2answers
39 views
Forcing the use of a factory object to instantiate a class
I have the special case where an object needs to be a singleton on a per thread basis. So I'd like to use a static factory method of a Factory class to instantiate those instances. To ensure that the ...
1
vote
2answers
34 views
Is there an idiomatic Objective-C technique to make an init method return a stub implementation for testing?
I am writing a unit test for a class Foo, which has a collaborator, Bar. I want to use a manually-built stub implementation of Bar in Foo's test.
If I were doing this in Java, I would give Foo a ...
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 ...
2
votes
4answers
86 views
.NET How to replace factory pattern with dependency injection
I have the following situation: a collection of objects have to be sent to different third parties based on a specific property of each object (the property is defined as an Enum). I intend to ...
3
votes
2answers
42 views
Simple Factory Pattern - assign values to the properties of the extended concrete instances at design time
I have the following child classes CentreAddress and VenueAddress extending from a base abstract class BaseAddress.
I was thinking of implementing a simple Factory, AddressFactory to deal with ...
0
votes
0answers
20 views
Populating Factory using Metaclasses in Python
Obviously, registering classes in Python is a major use-case for metaclasses. In this case, I've got a serialization module that currently uses dynamic imports to create classes and I'd prefer to ...
1
vote
3answers
48 views
PHP Factory design pattern method clarification
I want to know if this tutorial is correctly implementing factory design pattern in PHP. Below is the actual source code.
<?php
class Automobile
{
private $vehicle_make;
private ...
0
votes
0answers
31 views
.Net way to pick up common instances without passing them every time
I have a code base that my team is discussing refactoring. There are lots of different entities and all use a common IContext object that hold an open database connection and user details.
This means ...
0
votes
5answers
82 views
Confused with delete keyword opearation in C++
I would like to know how delete works?
In main function I have deleted the cfact object. But still the cfact->Hello() works instead of throwing an error.
While debugging I found while delete ...
-1
votes
2answers
51 views
Which Design Pattern am I looking for? [closed]
I am a little bit confused by chosing the right design pattern for my problem. Here is my code:
<?php
class Report_Journal ...
class Report_Recommendation ...
class Report_Customer ...
$type = ...
2
votes
2answers
52 views
Factory pattern for methods with common functionality
I have a couple of questions related to patterns and if you guys could help, it'd be great.
I have an example of a factory pattern code below (code at bottom)-
The questions I have are -
Question ...
0
votes
1answer
37 views
How to apply factory pattern php
I'm not sure how do factory pattern is applied.
If I take this code as example:
class Car
{
protected $_engine;
protected $_frame;
protected $_wheels;
public function ...
0
votes
1answer
25 views
Factory Method - what exception to throw
I have an extremely simple factory method that creates a model instance based on some values and conditions of config passed to it.
What i am unsure about is what to do if the factory is unable to ...
1
vote
0answers
54 views
Writing extension methods utilizing objects from Factory in C#
I'm facing a design question on how to properly integrate an object that originates from a factory into extension methods.
Say I have object Foo, I get Foo via a factory method like ...
1
vote
2answers
40 views
Factory class - stop init
I want to create a factory class to create objects for me (of a specific class).
The Factory class will just have class methods. Is there a way I can stop alloc init from being called on the class?
1
vote
1answer
17 views
JS - factory pattern overwrites private vars when stored in memory
so i'm still pretty new to js and i wanted to get into the more advanced stuff but i have this problem with the factory pattern, here's the basic code :
(function () {
var objs = [];
...
0
votes
2answers
52 views
Could this work as a Generic Factory method?
Just fooling around and I got this idea, is this a good implementation for a generic factory method pattern?
Factory Code:
public static class Factory
{
public static T Create<T>() where T ...
0
votes
0answers
48 views
How can I access object created by factory method?
My question is how to access instance cretead via Factory method that had no name
This is my code
public abstract class Vertex <T>{
int vertexId ;
T vertexValue ;
public abstract T ...
3
votes
2answers
44 views
Should a factory take care of reconstructing serialized objects?
I'm working on a homework in which I have to implement the Abstract Factory Pattern. I am given a template of the factory class which I need to implement (and adapt) in order to make a test program ...
1
vote
2answers
40 views
Replacing abstract factory with Guice?
I am new to Guice and I was wondering how far I can take it.
I have an interface UserInfo with multiple implementing classes GoogleUserInfo, FacebookUserInfo, TwitterUserInfo etc. These classes are ...
0
votes
4answers
48 views
Factory pattern when the abstract product is generic class
the first part of my project is to construct an hypergraph
This is a quickly-drew UML diagram
Vertex class
public abstract class Vertex <T>{
int vertexId ;
T vertexValue ;
...
4
votes
5answers
68 views
Does the return value of an abstract method can be of generic type
the first part of my project is to construct an hypergraph
This is a quickly-drew UML diagram
The vertex class
public abstract class Vertex <T>{
int vertexId ;
T vertexValue ;
...
3
votes
2answers
92 views
Is this right usage Of factory method
As i understood Factory design pattern is used to create object instead of constructors
in a previous question i explained my situation which is :
I have a complex Network represented as hypergraph
...
1
vote
1answer
61 views
why does Xcode always use the method of the superclass rather than the subclass [closed]
I'm using the factory pattern in objective-c, but for some reason it's never calling the method of the subclass.. I'll explain by code:
// MailBoxViewController.m -- file using the factory:
...
0
votes
1answer
97 views
Why is my virtual method being skipped over in C++?
Long story short: The program I'm working on is a rogue like - even though that isn't really needed for this question.
Here's the hierarchy tree for my classes related to this question:
...
0
votes
2answers
71 views
Does factory pattern create object only with default constructor [closed]
I need your help please
I have a complex Network represented as hypergraph
Hypergraph vertices has various type :image,tag ....
i should create thousand of vertices
it will be hard to create it ...
1
vote
1answer
93 views
Factory class - using a IOC container to register and resolve types
I am not quite sure how to implement this, or what the best strategy is, basically I have an (MVC) controller
public TestController(IService1 service1, IService2 service2,...)
{ }
(At the moment ...
2
votes
3answers
108 views
Java factory pattern using generic constraints
I have
public class MyFactory()
{
public static <T> T getItem(Element element, Class<T> clazz)
{
T item = null;
if (clazz == IFoo.class)
{
...
0
votes
2answers
182 views
factory pattern - invalid use of member in static member function
I'm new to this factory pattern in C++ and I was given the header yet while trying to implement one of the methods I am getting the following error:
Invalid use of member 'creationFunctions' in ...
0
votes
2answers
55 views
Constructor Injection to access service
Is there a better way to consume a service in mvvmcross by constructor injection?
For example, I have my object in a plugin implementation
public class MyObject : IMyObject
{
public MyObject (int ...
0
votes
2answers
49 views
Alphabet implementation by Factory Method
Does it goo idea to implement alphabet by factory method?
Example:
public class Alphabet
{
public Alphabet(image picture, string name)
{
_picture = picture;
_name = name;
}
...
0
votes
0answers
23 views
Regarding factory pattern
I have a factory class method like below
public class SampleFactory {
public static SampleServiceInterface getSampleService(String whichLOB) throws MyBatisException{
if ...
0
votes
1answer
48 views
Factory Design pattern do-nots?
Whenever I see factory design pattern, it always has a simple new FactoryName.build() approach. And when creating objects, they have dependencies, but in my case I have an existing projects where I am ...
0
votes
0answers
62 views
how to Implement EF+Repo+UoW design pattern for cross projects shared functions and customized functions for each project?
I have implemented EF+Generic Repository+UoW+Factory in one project and fine, now I am confused and don't know how to do it in another situation:
^1. The product has core functions use core database ...
0
votes
0answers
113 views
Use a dll's c++ factory generator in Python with ctypes
We use a common c++ pattern for our applications plugins, the factory generator. We have a c++ base class that defines a plugin's interface and create custom dlls that subclass that base interface. ...
1
vote
1answer
86 views
Which design pattern to use to dynamically build form. PHP
I do not want to use already done library that builds forms in PHP. I want to write my own using design patterns. Im new to design patterns so I need to know which design pattern would best fit ...
1
vote
1answer
44 views
Factory Method: Need of Creator hierarchy
I am new to design patterns. While going through GOF, one way to implement factory pattern is to create a parallel hierarchy of creators (factories) corresponding to each product. Why do we need this ...
0
votes
0answers
87 views
How to use EF+Generic Repository+UoW+Factory pattern?
I am trying to transform the EF+Generic Repository +UoW+ factory pattern on my existing projects, and browsered lots of good examples, but still have some confusions want to be cleared.
I am still ...
1
vote
1answer
203 views
Autofac delegate factory using func<>
I am trying to understand the delegate factory pattern with Autofac. I know how to implement factory using IIndex<> with Keyed() registration, which is explained nicely in here: Configuring an ...
1
vote
1answer
179 views
Factories, services, repository in DDD
I have some questions regarding factories, repositories and services in DDD. I have the following entities: Folder, file, FileData.
In my opinion the "Folder" is an aggregate root and should have the ...
-2
votes
1answer
105 views
Using Factory Pattern in Java
I am studying the Factory pattern and I have some doubts about which is the best way to buil it.
I developed two progamas that do exactly the same, the only difference is the code that implements the ...
0
votes
2answers
71 views
OOP factory method vs constructor
I have one top class, let's say School.
And a couple of classes extending the School class.
Normally, if I had to call one of the child classes I would use:
new Math('aaa'), or new ...
1
vote
1answer
60 views
Factory pattern Design
I have a factory based class such as this:
class AisisCore_Factory_Pattern {
protected static $_class_instance;
protected static $_dependencies;
public static function get_instance(){
...
0
votes
1answer
66 views
Generic Factory with Function Pointer Parameters? [closed]
I have been researching different ways of designing Abstract and Generic Factories and came across this answer from Groo.
Not being an expert at the particular style of programming used in this ...
1
vote
4answers
114 views
Factory to create AND instantiate object, based upon a string?
I have a request to read string messages from a queue and "process them". Each message has a 4 digit "identifier/key" a the start, followed by date, time and another number...from then on, each ...
-3
votes
1answer
70 views
Some error with factory method pattern in WCF. Can anyone point my error?
I have a factory design method implemented in my WCF but there is some error in this line i guess:
return svc.Calculation(int value1 + int value2);
Here are my other codes:
namespace CompositeWCF
...
0
votes
1answer
73 views
Does it make sense to ever have a Value Object factory when following DDD practices?
Recently I was thinking about some issues I had in the past while attempting to design a particular domain model, lets just say Address, that can be editable with a given context but non-editable ...
5
votes
5answers
225 views
Good design pattern(s) for extensible program
I have a question about how to make a good design for my program. My program is quite simple but I want to have good architecture and make my program easily extensible in the future.
My program need ...
0
votes
1answer
57 views
Moving from Factory Pattern to IoC
So I understand IoC, especially when "injecting an unknown concrete" into a class.
The most generic example of injecting an "ILogger" into a class either in the constructor or by a property.
Now, I ...







