Uses of Interface
com.bankframe.fe.statemachine.base.apploaders.IState

Packages that use IState
com.bankframe.fe.statemachine.base   
com.bankframe.fe.statemachine.base.apploaders   
com.bankframe.fe.statemachine.base.apps   
com.bankframe.fe.statemachine.base.sessionmanagers   
com.bankframe.fe.statemachine.ext.apploaders   
com.bankframe.fe.statemachine.ext.apploaders.bean   
com.bankframe.fe.statemachine.ext.apploaders.sax   
com.bankframe.fe.statemachine.ext.apps   
com.bankframe.fe.statemachine.ext.connectors.servlet   
com.bankframe.fe.statemachine.ext.connectors.swing   
com.bankframe.fe.statemachine.ext.sessionmanagers   
com.bankframe.fe.statemachine.ext.sessionmanagers.servlet   
 

Uses of IState in com.bankframe.fe.statemachine.base
 

Methods in com.bankframe.fe.statemachine.base that return IState
 IState StateMachineProcessingEvent.getState()
          Returns the state.
 

Constructors in com.bankframe.fe.statemachine.base with parameters of type IState
StateMachineProcessingEvent(RequestContext source, IState state, IEvent event)
           
StateMachineProcessingEvent(RequestContext source, IState state, IEvent event, IController controller)
           
StateMachineProcessingEvent(RequestContext source, IState state, IEvent event, IStateTransition transition)
           
StateMachineProcessingEvent(RequestContext source, IState state, IView view)
           
 

Uses of IState in com.bankframe.fe.statemachine.base.apploaders
 

Classes in com.bankframe.fe.statemachine.base.apploaders that implement IState
 class State
           
 

Methods in com.bankframe.fe.statemachine.base.apploaders that return IState
 IState IState.getExceptionState(String exceptionDescription)
          Returns a State which can be used if the named exception occurs.
 IState State.getExceptionState(String exceptionDescription)
           
 IState IState.getParentState()
          Returns this state's parent state.
 IState State.getParentState()
           
 IState IStateTransition.getResultState()
          Returns the result state for this state transition.
 IState StateTransition.getResultState()
           
 IState IApplication.getRootState()
          Returns the root State for this Application.
 IState UnitOfWork.getStartState()
           
 IState IApplication.getStartState()
          Returns the start state for this Application.
 IState IUnitOfWork.getStartState()
          Returns the start state for this unit of work.
 IState IApplication.getState(String name)
          Returns the named State.
 

Methods in com.bankframe.fe.statemachine.base.apploaders with parameters of type IState
 boolean IEvent.allowsResult(IState state)
          Returns true if the given State is allowed as a result from this Event.
 boolean StartupEvent.allowsResult(IState state)
          Returns true if the given State is allowed as a result from this Event.
 boolean Event.allowsResult(IState state)
          Returns true if the given State is allowed as a result from this Event.
 Object IStateCommand.executeAfter(IState state)
          This method will be called by the given state, and may perform any operation on that state.
 Object IStateCommand.executeBefore(IState state)
          This method will be called by the given state, and may perform any operation on that state.
 

Constructors in com.bankframe.fe.statemachine.base.apploaders with parameters of type IState
StartupEvent(IState startState, String controllerName)
          Creates new StartupEvent
StateTransition(int entryCondition, IState resultState, String name)
          Creates a new StateTransition.
UnitOfWork(String name, IState startState)
          Creates a new UnitOfWork.
 

Uses of IState in com.bankframe.fe.statemachine.base.apps
 

Methods in com.bankframe.fe.statemachine.base.apps with parameters of type IState
 void IView.build(RequestContext requestContext, IState currentState)
          Updates the user interface.
 

Uses of IState in com.bankframe.fe.statemachine.base.sessionmanagers
 

Methods in com.bankframe.fe.statemachine.base.sessionmanagers with parameters of type IState
 void UserSession.addStateVisit(IState state, IResponseData responseData)
          Records a new state visit, adding it to the history of this session.
 void IUserSession.addStateVisit(IState state, IResponseData responseData)
          Records a new state visit, adding it to the history of this session.
 IStateVisit UserSession.getHistory(IState state)
          Returns the most recent state visit which contains an immediate child of the given state.
 IStateVisit IUserSession.getHistory(IState state)
          Returns the most recent state visit which contains an immediate child of the given state.
 IStateVisit UserSession.getHistoryStar(IState state)
          Returns the most recent state visit which contains a child of the given state.
 IStateVisit IUserSession.getHistoryStar(IState state)
          Returns the most recent state visit which contains a child of the given state.
 boolean UserSession.wasStateVisited(IState state)
          Determines whether the given state has been visited in this session.
 boolean IUserSession.wasStateVisited(IState state)
          Determines whether the given state has been visited in this session.
 

Uses of IState in com.bankframe.fe.statemachine.ext.apploaders
 

Subinterfaces of IState in com.bankframe.fe.statemachine.ext.apploaders
 interface IState
           
 

Uses of IState in com.bankframe.fe.statemachine.ext.apploaders.bean
 

Classes in com.bankframe.fe.statemachine.ext.apploaders.bean that implement IState
 class FinalState
           
 

Methods in com.bankframe.fe.statemachine.ext.apploaders.bean that return IState
 IState FinalState.getExceptionState(String exceptionDescription)
           
 IState Application.getRootState()
           
 IState Application.getStartState()
           
 IState Application.getState(String name)
           
 

Methods in com.bankframe.fe.statemachine.ext.apploaders.bean with parameters of type IState
 void StateTransition.setResultState(IState resultState)
           
 

Constructors in com.bankframe.fe.statemachine.ext.apploaders.bean with parameters of type IState
StateTransition(int entryCondition, IState resultState, String name)
          Constructor for StateTransition.
 

Uses of IState in com.bankframe.fe.statemachine.ext.apploaders.sax
 

Methods in com.bankframe.fe.statemachine.ext.apploaders.sax that return IState
 IState State.getExceptionState(String exceptionDescription)
          Returns a State which can be used if the named exception occurs.
 IState State.getParentState()
          This method retruns the parent of this stateor null if none is set.
 IState StateTransition.getResultState()
          This method returns the result state object for this transition.
 IState Application.getRootState()
          This method returns the root state of this application.
 IState Application.getStartState()
          This method returns the start state for the application.
 IState Application.getState(String name)
          This method returns the state for the given name.
 

Methods in com.bankframe.fe.statemachine.ext.apploaders.sax with parameters of type IState
 boolean Event.allowsResult(IState state)
           
 Object SMContentHandler.InitializeProcessUserStateCommand.executeAfter(IState state)
           
 Object SMContentHandler.InitializeProcessUserStateCommand.executeBefore(IState s)
           
 

Uses of IState in com.bankframe.fe.statemachine.ext.apps
 

Methods in com.bankframe.fe.statemachine.ext.apps with parameters of type IState
 void View.build(RequestContext requestContext, IState currentState)
           
static void View.build(RequestContext requestContext, IState currentState, IView view)
          This is a convenience method for those classes that must implement IView but cannot extend this class.
 

Uses of IState in com.bankframe.fe.statemachine.ext.connectors.servlet
 

Methods in com.bankframe.fe.statemachine.ext.connectors.servlet with parameters of type IState
 void AutoView.build(RequestContext requestContext, IState currentState)
          Updates the user interface.
 

Uses of IState in com.bankframe.fe.statemachine.ext.connectors.swing
 

Methods in com.bankframe.fe.statemachine.ext.connectors.swing with parameters of type IState
 void AutoView.build(RequestContext requestContext, IState currentState)
          Updates the user interface.
 void SwingView.build(RequestContext requestContext, IState currentState)
           
 

Uses of IState in com.bankframe.fe.statemachine.ext.sessionmanagers
 

Constructors in com.bankframe.fe.statemachine.ext.sessionmanagers with parameters of type IState
StateVisit(IState state, IResponseData responseData)
          Constructor for StateVisit.
 

Uses of IState in com.bankframe.fe.statemachine.ext.sessionmanagers.servlet
 

Methods in com.bankframe.fe.statemachine.ext.sessionmanagers.servlet with parameters of type IState
 void UserSession.addStateVisit(IState state, IResponseData responseData)
          Records a new state visit, adding it to the history of this session.
 IStateVisit UserSession.getHistory(IState state)
          Returns the most recent state visit which contains an immediate child of the given state.
 IStateVisit UserSession.getHistoryStar(IState state)
          Returns the most recent state visit which contains a child of the given state.
 



Copyright © 2005, 2007, Oracle. All rights reserved.