01 /**
02 * Provides interfaces the developer can implement to configure the behaviour of the state machine.
03 * <p>
04 * This framework uses a very generic approach to describe the graph and transitions. Since every try
05 * in creating kind of meta language which describes the transitions and conditions leads into a
06 * undesired restriction of the programmers freedom, this implementation just provides a few interface
07 * which are invoked by the controler. A condition or a condition describition can be anything you want!
08 *
09 */
10 package com.x8ing.lsm4j;
|