Uses of Interface
org.malai.stateMachine.ITransition

Packages that use ITransition
org.malai.interaction   
org.malai.interaction.library   
org.malai.stateMachine   
 

Uses of ITransition in org.malai.interaction
 

Classes in org.malai.interaction that implement ITransition
 class ButtonPressedTransition
          This transition must be used to use a button pressed event within an interaction.
 class CheckBoxTransition
          This transition is mapped to a checkbox that has been modified.
 class KeyboardTransition
          This abstract transition is used a model for transition based on keyboard events.
 class KeyPressureTransition
          This transition corresponds to a pressure of a key of a keyboard.
 class KeyReleaseTransition
          This transition corresponds to a release of a key of a keyboard.
 class ListTransition
          This transition is mapped to a list (ItemSelectable) that has been modified.
 class MenuItemTransition
          This transition is mapped to a menu item that has been pressed.
 class MoveTransition
          This transition corresponds to a move of a button of a pointing device.
 class PointingDeviceTransition
          This abstract transition defines a model for transitions based on pointing device events.
 class PressureTransition
          This transition corresponds to a pressure of a button of a pointing device.
 class ReleaseTransition
          This transition corresponds to a release of a button of a pointing device.
 class ScrollTransition
          This transition corresponds to a scroll event.
 class SpinnerTransition
          This transition is mapped to a spinner that has been modified.
 class TabSelectedTransition
          This transition corresponds to a change in the selection of a tabbed pane.
 class TextChangedTransition
          This transition corresponds to a change of the text of a text field.
 class TimeoutTransition
          This transition defines a timeout: when the user does nothing during a given duration, the timeout transition is executed.
 class Transition
          A transition links two states of a state machine if a given condition is respected.
 class WindowClosedTransition
          This transition corresponds to a press on the decorative close button of a frame.
 

Fields in org.malai.interaction with type parameters of type ITransition
protected  java.util.List<ITransition> State.transitions
          The list of the transitions that leave the state.
 

Methods in org.malai.interaction that return ITransition
 ITransition State.getTransition(int i)
           
 

Methods in org.malai.interaction that return types with arguments of type ITransition
 java.util.List<ITransition> State.getTransitions()
           
 

Methods in org.malai.interaction with parameters of type ITransition
 void State.addTransition(ITransition trans)
           
private  boolean Interaction.checkTransition(ITransition transition)
          Checks if the transition can be executed and executes it if possible.
private  void Interaction.executeTransition(ITransition transition)
          Executes the given transition.
 

Uses of ITransition in org.malai.interaction.library
 

Classes in org.malai.interaction.library that implement ITransition
(package private)  class DnD.Move4DnD
           
(package private)  class DnD.Release4DnD
           
(package private)  class DoubleClick.ReleaseTransition4DoubleClick
           
 class EscapeKeyPressureTransition
          This transition should be used to cancel an interaction using key ESCAPE.
(package private)  class KeyInteraction.KeyInteractionKeyPressedTransition
          Defines a transition modifying the key attribute of the interaction.
(package private)  class KeysPressure.KeysPressureKeyPressedTransition
          Defines a transition modifying the keys attribute of the interaction.
(package private)  class PointInteraction.PointPressureTransition
          A press transition.
(package private)  class Scrolling.ScrollingScrollTransition
          This scroll transition modifies the scrolling interaction.
(package private)  class SpinnerModified.SpinnerModifiedSpinnerTransition
          The kind of transition of the SpinnerModified corresponding to a spinner event.
 

Uses of ITransition in org.malai.stateMachine
 

Methods in org.malai.stateMachine that return ITransition
 ITransition IState.getTransition(int index)
           
 

Methods in org.malai.stateMachine that return types with arguments of type ITransition
 java.util.List<ITransition> IState.getTransitions()
           
 

Methods in org.malai.stateMachine with parameters of type ITransition
 void IState.addTransition(ITransition trans)
          Adds a transition to the state.