1 17 18 19 package SOFA.SOFAnode.Util.DFSRChecker.state; 20 21 import SOFA.SOFAnode.Util.DFSRChecker.node.ActionRepository; 22 23 28 public class TransitionPair { 29 30 31 public TransitionPair(int eventindex, State state) { 32 this.eventIndex = eventindex; 33 this.state = state; 34 } 35 36 41 public String toString() { 42 return new String (repository.getItemString(eventIndex) + "->" + state.label); 43 } 44 45 48 final public int eventIndex; 49 50 53 final public State state; 54 55 58 static public ActionRepository repository; 59 60 } | Popular Tags |