Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
229 views

State or workflow diagram component for .NET

I'm looking for a component or library for .NET, that would allow me to either visually edit, or at least visualise simple state or workflow diagrams or charts. Preferably free, but comercial is fine ...
3
votes
11answers
1k views

Is there a programming language with built-in state machine construct?

I am just curious if there is a programming language which has state machines (similar to boost::statechart) as primary language construct. Analogies - c# has delegates where java uses the observer ...
2
votes
1answer
546 views

Difference between StateChart and Activity Diagram

I am really unable to understand the real difference between these 2 diagrams. I mean both of these deal is "states" but I am not sure what deals with what?
2
votes
2answers
553 views

hierarchical statecharts designer with code generation

What is the best free and the best commercial tool that lets me draw uml hierarchical statechats like in the picture below. It would also be cool if it could generate the c# source code stubs.
1
vote
1answer
73 views

How to get the current most derived state in a boost::statechart state_machine object?

I am using boost::state_chart library. For debug purposes, I would like to know at any given time the state of my state machine. How to get the current (most derived) state in the state_machine object ...
1
vote
2answers
345 views

Statechart for javascript like Sproutcore's statechart?

In Sproutcore there is a statechart framework I can use for giving the application states which holds actions for what you can do in different states. I wonder if there is a similar standalone ...
1
vote
2answers
79 views

Recording state changes in boost::statechart

For Unit Testing, I'm trying to record all the state transactions after I kick off a state machine event. E.g., if I post_event A to the fifo_scheduler of an async_state_machine, the state machine ...
0
votes
2answers
198 views

How to define concurrent states in Ember.js?

I want to define concurrent states in Ember.js, but the lack of documentation makes it hard to figure out how. You can define mutually exclusive states (system is either in foo or bar) like so: ...
0
votes
1answer
17 views

Can composite states contain do actions?

I know that composite states are composed of internal states which show how the state behaves. Can you also have a do action when the state is active? this is like showing parallel behavior in the ...
0
votes
1answer
40 views

catching discarded events in boost statechart library

I am looking at Boost StateChart lib documentation, and I am not able to find out a way to catch abnormal events. For example, if I am in state A, which handles only EventA, and I call ...
0
votes
1answer
55 views

Does statemachine and statechart mean the same?

I have heard people using these terms. I wonder if they refer to the same thing or is there a difference between these two?
0
votes
1answer
76 views

Difference between a statechart and a finite statemachine (FSM)?

Here is a statechart diagram: http://www.jointjs.com/demos/run.html?unit=uml.statechart Here is a finite statemachine: http://www.jointjs.com/demos/run.html?unit=fsa What are the differences between ...
0
votes
2answers
57 views

How to know what function a function is inside?

I am trying to create a statechart framework as a sparetime project. CoffeeScript Statechart.state "A", -> @state "B1", -> @state "C" @state "B2", -> JavaScript ...
0
votes
1answer
120 views

More Javascript statechart frameworks

I'm using ExtJS and think it's an amazing framework. However, they don't have a statechart built in which makes app development depending on states very painful. I recently found this one: ...
0
votes
0answers
62 views

Architecture for designing a UI based system

I am designing an Android App having a User Interface. I am looking for some architectures that I can follow for error free coding and ease of maintenance. In my earlier apps the code was pretty much ...
0
votes
1answer
164 views

boost statechart pass arguments with transition

I'm trying to learn boost::statechart. I want to make a little app which loads a file. // -------------------------------- // | | // | O Project ...
0
votes
1answer
94 views

IAR VisualState Requiring Trigger For Every Expression inside a State

I have been using State machine based design tools for some time, and have seen UML modeling tools that allow you to execute your logic (call functions, do other stuff) inside a state. However, after ...
-2
votes
1answer
171 views

More javascript libraries for UML diagrams? [closed]

I found this awesome javascript library (based on Raphael) for UML diagrams: Jointjs: http://www.jointjs.com/demos/run.html?unit=uml.statechart http://www.jointjs.com/demos/run.html?unit=fsa ...