Uses of Interface
net.dpml.state.Transition

Packages that use Transition
net.dpml.metro.runtime Metro component model controller implementation. 
net.dpml.state The net.dpml.state package defines states, transitons, operations and triggers and a state machine supporting orderly management of state transitions and dynamic operations. 
 

Uses of Transition in net.dpml.metro.runtime
 

Methods in net.dpml.metro.runtime that return Transition
 Transition[] DefaultStateMachine.getTransitions()
          Return all of the available transitions relative to the current state.
 

Uses of Transition in net.dpml.state
 

Classes in net.dpml.state that implement Transition
 class DefaultTransition
          Default implemention of a state transition descriptor.
 

Methods in net.dpml.state that return Transition
 Transition[] DefaultState.getTransitions()
          Return the array of transtions associated with the state.
 Transition[] NullState.getTransitions()
          Return the array of transtions associated with the state.
 Transition[] State.getTransitions()
          Return the array of transtions associated with the state.
 Transition[] StateMachine.getTransitions()
          Return all of the available transitions relative to the current state.
 

Constructors in net.dpml.state with parameters of type Transition
DefaultState(String name, Trigger[] triggers, Transition[] transitions, Interface[] interfaces, Operation[] operations, State[] states)
          Creation of a new non-terminal state.
DefaultState(String name, Trigger[] triggers, Transition[] transitions, Interface[] interfaces, Operation[] operations, State[] states, boolean terminal)
          Creation of a new state.