Uses of Interface
org.apache.mina.statemachine.context.StateContext

Packages that use StateContext
org.apache.mina.example.tapedeck   
org.apache.mina.statemachine.context   
org.apache.mina.statemachine.event   
 

Uses of StateContext in org.apache.mina.example.tapedeck
 

Methods in org.apache.mina.example.tapedeck with parameters of type StateContext
 void TapeDeckServer.error(Event event, StateContext context, IoSession session, Command cmd)
           
 

Uses of StateContext in org.apache.mina.statemachine.context
 

Classes in org.apache.mina.statemachine.context that implement StateContext
 class AbstractStateContext
          Abstract StateContext which uses a Map to store the attributes.
 class DefaultStateContext
          Default StateContext implementation.
 

Methods in org.apache.mina.statemachine.context that return StateContext
 StateContext StateContextFactory.create()
          Creates a new StateContext.
 StateContext DefaultStateContextFactory.create()
           
protected  StateContext IoSessionStateContextLookup.lookup(java.lang.Object eventArg)
           
protected abstract  StateContext AbstractStateContextLookup.lookup(java.lang.Object eventArg)
          Extracts a StateContext from the specified event argument which is an instance of a class AbstractStateContextLookup.supports(Class) returns true for.
 StateContext StateContextLookup.lookup(java.lang.Object[] eventArgs)
          Searches the arguments from an Event and returns a StateContext if any of the arguments holds one.
 StateContext SingletonStateContextLookup.lookup(java.lang.Object[] eventArgs)
           
 StateContext AbstractStateContextLookup.lookup(java.lang.Object[] eventArgs)
           
 

Methods in org.apache.mina.statemachine.context with parameters of type StateContext
protected  void IoSessionStateContextLookup.store(java.lang.Object eventArg, StateContext context)
           
protected abstract  void AbstractStateContextLookup.store(java.lang.Object eventArg, StateContext context)
          Stores a new StateContext in the specified event argument which is an instance of a class AbstractStateContextLookup.supports(Class) returns true for.
 

Uses of StateContext in org.apache.mina.statemachine.event
 

Methods in org.apache.mina.statemachine.event that return StateContext
 StateContext Event.getContext()
          Returns the StateContext this Event was triggered for.
 

Methods in org.apache.mina.statemachine.event with parameters of type StateContext
 Event EventFactory.create(StateContext context, java.lang.reflect.Method method, java.lang.Object[] arguments)
          Creates a new Event from the specified method and method arguments.
 Event DefaultEventFactory.create(StateContext context, java.lang.reflect.Method method, java.lang.Object[] arguments)
           
 

Constructors in org.apache.mina.statemachine.event with parameters of type StateContext
Event(java.lang.Object id, StateContext context)
          Creates a new Event with the specified id and no arguments.
Event(java.lang.Object id, StateContext context, java.lang.Object[] arguments)
          Creates a new Event with the specified id and arguments.
 



Copyright © 2004-2011 Apache MINA Project. All Rights Reserved.