Add complex showcase sm sample

This commit is contained in:
Janne Valkealahti
2015-03-07 19:23:40 +00:00
parent 5bdf642005
commit fe0f7ebb95
11 changed files with 320 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -75,3 +75,39 @@ State changed to LOCKED
Event PUSH send
----
== Showcase
Showcase is a complex state machine showing all possible transition
topologies up to four levels of state nesting.
image::images/statechart2.png[]
.States
[source,java,indent=0]
----
include::samples/demo/showcase/Application.java[tags=snippetB]
----
.Events
[source,java,indent=0]
----
include::samples/demo/showcase/Application.java[tags=snippetC]
----
.Configuration
[source,java,indent=0]
----
include::samples/demo/showcase/Application.java[tags=snippetA]
----
.Guard
[source,java,indent=0]
----
include::samples/demo/showcase/Application.java[tags=snippetD]
----
.Action
[source,java,indent=0]
----
include::samples/demo/showcase/Application.java[tags=snippetE]
----