The strategy pattern (also known as the policy pattern) is a software design pattern, whereby an algorithm's behavior can be selected at runtime.
0
votes
0answers
17 views
Strategies for bulk data processing of live data
Our product relies on large bulk uploads of tabular information. This information is processed and changes data in the database ... data that is at all times available and live. Basically, there is ...
1
vote
1answer
43 views
Calling a method from a class in runtime
I have a JTabbedPane like the one in this picture:
I have a class for each tab (HouseGUI, CSPGUI, VPPGUI, and many others).
Each class has a method called writeToXML()
I need to call the ...
1
vote
3answers
65 views
Best way of implementing Strategy Pattern
I have been looking for Strategy Pattern and I saw This link which the guy has explained this pattern very well.
But as far as I know (maybe right or wrong) you shouldn't make a new class in another ...
1
vote
1answer
28 views
Is it better to use multiple SignalR Hubs or setup a strategy pattern
From my understanding of the SignalR documentation, you can have 1..* hubs, but only one pipe is created b/t client/server.
I assume multiple hubs is good for organization, so which is best - ...
0
votes
0answers
11 views
What is the difference between the strategy/policy pattern and the service locator pattern?
In reading this article about the service locator pattern, I see similarities between it's functionality and the strategy or policy pattern.
I have used the strategy pattern to dynamically change the ...
-1
votes
1answer
70 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 ...
0
votes
1answer
58 views
Difference between Strategy Pattern and State Pattern using example
Although there are many questions over the same topic, none of them cleared my confusion completely. So I am attempting to put an example and its solution with both patterns.
Please tell me if I am ...
-1
votes
1answer
41 views
How can I force the redefinition of a constructor?
is there any possibility to force the redefinition of a constructor?
I have a base abstract class
public abstract class AbstractBaseClass {
private AStrategy as;
private ...
0
votes
2answers
73 views
C# strategy and observer pattern code
Hi I'm trying to create abstract class Person and two child classes Student and Staff. Person class also has an observer that is notified by a Practical class. But Students will be notified only about ...
0
votes
1answer
78 views
OOD: Using factory pattern in combination with strategy pattern
There are a few questions already on Stackoverflow with similar scenarios, but they don't really address my case.
I am currently doing some refactoring and would like to make the code more robust, ...
1
vote
2answers
76 views
OO programming issue - State Design Pattern
I have spent the last day trying to work out which pattern best fits my specific scenario and I have been tossing up between the State Pattern & Strategy pattern. When I read examples on the ...
1
vote
1answer
61 views
Policy based design: how to customize the Host structure in a proper way?
I have a bunch of algorithms and collections, and I am using a Policy Based design (see the book Modern C++ Design) to deal with arbitrary combinatorial complexity. This is great, but in order to ...
2
votes
1answer
169 views
UML Class Diagram for Strategy Pattern
I have an exam in a couple of hours and I am trying to solve sample questions for it. I couldn't find a solution to following question.
Draw a class diagram corresponding to the following ...
0
votes
2answers
56 views
How to use strategy pattern with Ninject
I have two repositories AlbumRepository with interface IAlbumRepository and CachedAlbumRepository with interface IAlbumRepository which has constructor interface IAlbumRepository. I need inject with ...
0
votes
0answers
54 views
Is this right usage of Strategy pattern
I have a complex Network represented as hypergraph
Hypergraph vertices are from various type:image,tag ....
I have also various type of hyper-edge that relate vertices
Homogenous HyperEdge ...
0
votes
1answer
47 views
Implementing the Strategy Pattern against generated pojos
I am writing a parser for a couple of different DB tables. We're using Hibernate with Eclipse, and we've made hbm.xml mapping files that correspond to our tables so that our .java files are generated ...
0
votes
3answers
131 views
Strategy Design Pattern (with argument method) - JAVA
I'm writing an algorithm which works on a bit serie and do some operations such as shift, AND with it. I wanted to test the algorithm with two different data structure : MutableBigInteger and ...
1
vote
0answers
68 views
factory, strategy and enum [closed]
I want to refactor my code.
In the current code one enum is used for two purposes.
Deciding what object to create
Deciding what method to call on an existing webservice
I want to refactor this to an ...
3
votes
2answers
82 views
Decorate a char* and char const* by pointer acquisition : good practice?
Hello I wanted to poll the public about my idea of doing a string class (like std::string) that would have a feature of being able to work on buffers provided by the client.
What are the dangers that ...
0
votes
2answers
53 views
Strategy Pattern in “real life”
I'm trying to transform wikipedia examples of strategy pattern to real life problems, but I'm not sure if my scenario does require such pattern.
say we a have a service that gets updates from several ...
0
votes
2answers
127 views
Is this a correct implementation of the Strategy pattern with the FizzBuzz exercise?
I've recently had a real world use for the Strategy pattern. I find myself with hammer/nail syndrome where this pattern is my hammer and everything else is a nail. For kicks, I decided to try ...
0
votes
1answer
73 views
Trouble implementing strategy and composite pattern to give varying behaviour in a game
I'm running into real trouble trying to complete a practical that requires using strategy and composite pattern. I am trying to create a collection of vehicles which can have different behavior ...
0
votes
2answers
74 views
Something it is wrong in implementation of Strategy Pattern in c#
I am trying implement a Strategy pattern with nested classes.
public class Restriction
{
protected SpecificRestriction _specificRestriction;
public void SetGreaterRestriction(decimal value)
...
0
votes
0answers
51 views
Startegy Design Pattern can have Dao Services in the contract
For our Member Acquisition module i am trying to implement Dependency Injection & Strategy Design Pattern as our main design pattern. The Acquisition could be of any form from Paid Services, Free ...
2
votes
1answer
57 views
Which design pattern for dispayling custom editors according to objects instance?
I have several objects that all extend a Shape basic class. For every object I want to display a different object editor, as eg a Line has different properties to edit than a Rectangle.
class Shape;
...
0
votes
0answers
33 views
Configurable step selection in Strategy pattern [closed]
I have a component that provides some functionality to multiple clients. This functionality is broken down into a sequence of steps. The use of strategy pattern seems like a good idea.
It is very ...
0
votes
0answers
52 views
Organising dependency injection with related strategies configured by a common value?
Oh wise and ineffable Usenet Oracle,
I'm using simple static DI in Java - a family of static 'Injector' classes mirroring the interface tree, which call amongst themselves to build the object tree. ...
3
votes
5answers
142 views
How to refactor large class that uses “Strategies”?
Problem
I have a large class (about 1500 LOC) and it uses different "strategies" to transform data from one object to another.
I have here a representation of that class:
public class FooService ...
1
vote
3answers
149 views
why we implement interface to abstract class
Pls find the link for reference: "Strategy for success" article of JavaWorld
My question is why do we need to have separate interface and implement it in abstract class, when we can declare those ...
0
votes
0answers
104 views
Java Strategy design pattern context class clarification
I have been doing a lot of reading on this but, I feel like I am misunderstanding the role of the context class.
This is my primary class that creates the tree structure.
package bintree;
/** ...
0
votes
2answers
119 views
C++ passing an unknown type to an object which has an abstract base
I have another question following on from my previous question about abstractions, I have another problem in relation to setting data at the event once it has been created.
As things stand, I can ...
1
vote
0answers
88 views
Strategy Pattern or Interface?
I'm looking to abstract a helper method. The method needs to be able to take in an object, do things with it depending on the type of object, and return a value. Would it be better to do something ...
-1
votes
2answers
76 views
Strategy and Observer pattern prints nothing [closed]
I'm trying to write some simple Python code to turn aCaterpillarinto aButterfly` (both are and inherit from creatures), both with move behaviors Crawl and Fly, respectively, using both the Strategy ...
1
vote
1answer
111 views
Regarding favoring composition over inheritance approch, STRATEGY pattern
I was ask an question in an interview that was lets say there's the class A with a method drawShape() and there's an another class B with the method drawSquare(). Now there's a third class C. In my ...
6
votes
1answer
340 views
How can a delegate respond to multiple events with a generic and extensible class?
I have rigged up a technique to handle multiple subreports in an rdlc report, but as I have tried to make it generic and repeatable, I have instead had to take the model and tweak it slightly for each ...
-1
votes
1answer
73 views
Difference between Vistor pattern and Stategy pattern?
I read about visitor pattern at
http://en.wikipedia.org/wiki/Visitor_pattern
Initial understanding of this pattern created impression that visitor pattern is same as Bridge/Strategy pattern.
So is ...
-1
votes
3answers
140 views
Strategy pattern executing two or more algorithms
Can anyone make me an example of a strategy pattern that use not one,but two or more algorithms in sequence??
Maybe have i to insert those algorithms in a list and then with a for execute all ...
1
vote
0answers
60 views
Implmenting strategy pattern with Enums conflicts with Generics [duplicate]
I am trying to implement Strategy using Enums in Java. So I write an enum as follows:
public enum Command {
COMMAND1(new Command1Processor()), COMMAND2(new Command2Processor());
protected ...
0
votes
2answers
96 views
Strategy pattern and iterator on all algorithms
I have a list of algorithms that I want to run on an image for denoise it. I have several different algorithms for denoising my pics. Say I have denoise_1 and denoise_2 and denoise_3. But in the ...
0
votes
1answer
81 views
How to test a Factory / Strategy implementation with PHPUnit
I have a Factory class that returns a writer strategy based on the extension of a given file:
public static function getWriterForFile($file)
{
// create file info object
$fileInfo = new ...
1
vote
2answers
68 views
Strategy Pattern with derived alogrithms calling methods on context
I am in need for some design help.
I have a class, let's call it a spaceship which can implement several behaviors.
I've defined an interface to declare the operations each behavior supports.
Until ...
2
votes
1answer
145 views
Algorithm: Maximizing profit in card game with m winning cards and n losing cards
Let's say a Casino (C) has a game which involves only one player and one dealer. The game is played with m+n cards, m are marked as winning cards and 'n' as losing cards.
Rules/Information regarding ...
1
vote
2answers
76 views
Does the compile warning point to bad design? [duplicate]
Possible Duplicate:
How to suppress Java compiler warnings for specific functions
I would like to use a Map to implement the Strategy pattern. However, I cannot find a way of doing this in ...
0
votes
3answers
114 views
Do I have to compose every method in my main class in order to use it (Strategy pattern)?
I've been using this tutorial to look into the Strategy pattern. I receive the output he talks about, but it seems like there is no option to use the digHole() method. When I call the method in the ...
0
votes
1answer
80 views
parameterized strategy pattern in MEF
I have three types of algorithms, each take a different parameter type needed for prcoessing.
class AlgorithmA
{
Execute(int param);
}
class AlgorithmB
{
Execute(string param);
}
class ...
1
vote
1answer
113 views
Strategy Pattern with Dummy concrete strategy
Refering to posted question here, could you please comment if this is good approach to solve OPTIONAL behaviour for extending class, by using composition, not inheritance. Plannable behaviour is here ...
0
votes
1answer
55 views
How to map classes in Hibernate that only have behavior?
i'm mapping some classes in hibernate, these classes are basically a strategy pattern. I have a class "User" that knows an abstract class "UserType" that declares an abstract method ...
0
votes
1answer
215 views
Using Factory with Strategy design pattern
Okay, so I have been given an assignment where I am asked to use both the Strategy and Factory design patterns. Here is the problem:
You are developing an application for a bank to use for handling ...
0
votes
2answers
251 views
strategy design pattern
Hi everyone I am trying to implement the strategy pattern but I can not set the amount in the concrete classes, what i mean is that the amount is remianing the same as the one in the helper class that ...
3
votes
1answer
120 views
Strategy pattern in domain model
I am encountering an example where the strategy pattern in a domain model should be used. I have a User class representing users of the system. Each user may receive requests while using the system. ...






