com.bankframe.fe.statemachine.base.apploaders
Interface IApplication

All Known Subinterfaces:
IApplication
All Known Implementing Classes:
Application, Application

public interface IApplication


Method Summary
 java.lang.String getName()
          Returns the name of this Application.
 IState getRootState()
          Returns the root State for this Application.
 IState getStartState()
          Returns the start state for this Application.
 IState getState(java.lang.String name)
          Returns the named State.
 java.util.Vector getStates()
          This method returns all the states for this application.
 

Method Detail

getState

public IState getState(java.lang.String name)
Returns the named State.

Parameters:
name - the id of the required state.
Returns:
the state with the given id

getName

public java.lang.String getName()
Returns the name of this Application.

Returns:
the name of the application.

getRootState

public IState getRootState()
Returns the root State for this Application.

Returns:
the root state of the application.

getStartState

public IState getStartState()
Returns the start state for this Application.

Returns:
the start state of the application.

getStates

public java.util.Vector getStates()
This method returns all the states for this application.

Returns:
Vector


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