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 UnitOfWork.getStartState()
           
 IState StateTransition.getResultState()
           
 IState State.getExceptionState(java.lang.String exceptionDescription)
           
 IState State.getParentState()
           
 IState IUnitOfWork.getStartState()
          Returns the start state for this unit of work.
 IState IStateTransition.getResultState()
          Returns the result state for this state transition.
 IState IState.getExceptionState(java.lang.String exceptionDescription)
          Returns a State which can be used if the named exception occurs.
 IState IState.getParentState()
          Returns this state's parent state.
 IState IApplication.getState(java.lang.String name)
          Returns the named State.
 IState IApplication.getRootState()
          Returns the root State for this Application.
 IState IApplication.getStartState()
          Returns the start state for this Application.
 

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

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

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
 IStateVisit UserSession.getHistoryStar(IState state)
          Returns the most recent state visit which contains a child of the given state.
 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.
 boolean UserSession.wasStateVisited(IState state)
          Determines whether the given state has been visited in this session.
 IStateVisit IUserSession.getHistory(IState state)
          Returns the most recent state visit which contains an immediate child of the given state.
 IStateVisit IUserSession.getHistoryStar(IState state)
          Returns the most recent state visit which contains a child of the given state.
 void IUserSession.addStateVisit(IState state, IResponseData responseData)
          Records a new state visit, adding it to the history of 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(java.lang.String exceptionDescription)
           
 IState Application.getState(java.lang.String name)
           
 IState Application.getRootState()
           
 IState Application.getStartState()
           
 

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, java.lang.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 StateTransition.getResultState()
          This method returns the result state object for this transition.
 IState State.getExceptionState(java.lang.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 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(java.lang.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
 java.lang.Object SMContentHandler.InitializeProcessUserStateCommand.executeAfter(IState state)
           
 java.lang.Object SMContentHandler.InitializeProcessUserStateCommand.executeBefore(IState s)
           
 boolean Event.allowsResult(IState state)
           
 

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 SwingView.build(RequestContext requestContext, IState currentState)
           
 void AutoView.build(RequestContext requestContext, IState currentState)
          Updates the user interface.
 

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
 IStateVisit UserSession.getHistoryStar(IState state)
          Returns the most recent state visit which contains a child of the given state.
 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.
 



Copyright © 2004 Siebel Systems, Inc. All rights reserved.