Uses of Interface
net.dpml.state.Interface

Packages that use Interface
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 Interface in net.dpml.metro.runtime
 

Methods in net.dpml.metro.runtime that return Interface
 Interface[] DefaultStateMachine.getInterfaces()
          Return all of the available interfaces relative to the current state.
 

Uses of Interface in net.dpml.state
 

Classes in net.dpml.state that implement Interface
 class DefaultInterface
          Default implementation of an operation.
 

Methods in net.dpml.state that return Interface
 Interface[] DefaultState.getInterfaces()
          Return the array of management interfaces associated with the state.
 Interface[] NullState.getInterfaces()
          Return the array of operations associated with the state.
 Interface[] State.getInterfaces()
          Return the array of management interfaces associated with the state.
 Interface[] StateMachine.getInterfaces()
          Return all of the available interfaces relative to the current state.
 

Constructors in net.dpml.state with parameters of type Interface
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.