Tagged Questions
The state-pattern tag has no wiki summary.
7
votes
6answers
2k views
What is the difference between Strategy Design pattern and State Design pattern?
What is the difference between Strategy Design pattern and State Design pattern?
I was going through quite a few articles on the web but could not make out the difference clearly. Can somebody please ...
4
votes
2answers
278 views
State design pattern User Interface
I am learning the State Design Pattern. I am using C# ASP.Net (not sure if the language is relevant).
Basically, my object has states A, B and C, and also actions to to move it between different ...
4
votes
2answers
426 views
Design Problem - Using a 'variation' on State Pattern - C++
Overview:
I am trying to improve the design of a program that I am using state pattern for. I will post a brief description of the problem, an image of the class diagram/description of the ...
2
votes
1answer
94 views
Decoupling States using the State Pattern
I am unsure as to what the best OO design approach should be regarding a particular State pattern I am implementing. Please consider the following:
public class World {
private Animal dog_;
...
2
votes
1answer
211 views
Fluent NHibernate Mapping - State Pattern
I'm not too hot on NHibernate / FNH Mapping but I am looking at implementing the state pattern and like the idea of Derick Bailey's article here:
I beleive this was a while ago so the mapping code is ...
2
votes
2answers
236 views
Can State Pattern help with read only states?
I'm trying to model a certain process and I'm thinking that the State Pattern might be a good match. I'd like to get your feedback though about whether State will suit my needs and how it should be ...
2
votes
3answers
529 views
State pattern with SAX
I have to parse some xml with java SAX parser. As I was busy, I saw that the state pattern could be used here.
There are clear states and state transitions defined, resembling the structure of the ...
1
vote
3answers
108 views
State Design Pattern with Polymorphic Objects
I have a hierarchy of objects that will all have similar behavior. I want to separate the behavior from the POCO definitions. Since the behaviors represent moving the objects to various states, this ...
1
vote
3answers
103 views
where does the business logic live when using a state pattern?
IS it the wrapper object ? or the state object itself ?
can I please see some examples ?
1
vote
2answers
434 views
State pattern in Java
I've read about state pattern and now I'm looking to further my knowledge by exploring a Swing application (exple : calculator) that implements it.
where can I find such a tutorial ?
it must ...
1
vote
1answer
144 views
State pattern: Why doesn't the context class implement or inherit the State abstract interface/class?
I'm reading about the State pattern. I have only just begun, so of course I begin by reading the entire Wikipedia article on it.
I noticed that both of the examples in the article have some base ...
0
votes
1answer
204 views
How to map abstract class using entity code first and State Pattern
I'm trying mapp an entity using Entity Framwork 4.1, Code First and Fluent API. My scenary is that I'm implementing an State Pattern using an abstract class.
See my implementation:
//my contract
...
0
votes
0answers
57 views
State Pattern in EJB 3
I have been refactoring some existing code of an application. Looking at it, I have found a class that's a mess... and it could be refactored using the State pattern. However I haven't found an ...
0
votes
0answers
22 views
Applying key bindings to state transitions when implementing a state pattern
here's a programming style question about the best strategy to map input keys to actions in a class that implement the state pattern.
I'm dealing with two classes:
The first implements the state ...
0
votes
1answer
120 views
state transition with different guard condition
In the state pattern how is this modeled ?
state A to state B on trigger X and conditon C1 when current state is A
state A to state C on trigger X and condition C2 when current state is A
how is ...
0
votes
0answers
21 views
need help with state modeling
I am trying to model a workflow with certain steps... where I need approval of specific users on a document say A, B. If A approves, I need to make sure B approves too and vice versa. If B has ...
0
votes
1answer
33 views
Model Profiles as Pattern Instances
Suppose you have a profile for an application. This profile stores some data specifically about one user. You can persist the details of the profile and pull them back each run.
Does a profile make a ...
0
votes
5answers
488 views
State pattern: why states are not Singletons?
I've used the State pattern to implement a simple finite state machine. Looking at the description given on Wikipedia, and more specifically at the suggested Java implementation, I wondered why ...
0
votes
2answers
375 views
NHibernate and State Pattern persistance - a good implementation?
Below is my implementation of the state pattern. In order to persist the State object to my database with NHibernate, I am assigning each state class an enum value. This is stored as a private field ...
0
votes
1answer
152 views
How to state pattern with asp.net mvc?
Hi
One question but I'm looking for two solutions:
static
dynamic
Static means I know all states. Dynamic means I don't know states because end user can define it.
Static
How to create and ...
0
votes
2answers
211 views
The “state design pattern” could be considered an “architectural pattern”?
"An architectural pattern expresses a fundamental structural organization schema for a software system".
There are software systems that can be described as finite-state machines (specially many ...
0
votes
1answer
647 views
State Pattern in iPhone applications (Memory Usage)
Does the state pattern in an iPhone application -- In my case, a relatively light-weight utility application -- use too much memory?
The state pattern, as I understand it, uses several classes; ...