KStateMachine.java :  » UML » umlatj » org » umlatj » internal » sm » Java Open Source

Java Open Source » UML » umlatj 
umlatj » org » umlatj » internal » sm » KStateMachine.java
package org.umlatj.internal.sm;

public class KStateMachine {

  /**
   * The root of all states
   */
  KState root = new KState();

  public KStateMachine() {
    this.root.setName("<root>");
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.