01: /*
02: * Created on Nov 23, 2005
03: */
04: package uk.org.ponder.rsf.flow.lite;
05:
06: public class ActionState extends State {
07: public Action action;
08: public TransitionList transitions = new TransitionList();
09:
10: public void init() {
11: if (action.method == null) {
12: action.method = id;
13: }
14: }
15: }
|