com.tonbeller.jpivot.tags
Interface StateManager.State

Enclosing interface:
StateManager

public static interface StateManager.State

lifecycle: initialize() -> show() -> hide() -> ... -> show() -> hide() -> destroy()

Since:
15.02.2005
Author:
av

Method Summary
 void destroy()
          called once after the state is no longer used
 java.lang.String getName()
          the name of the state, for example the name of the JSP file.
 void hide()
          called when the
 void initialize()
          called once before the state is used
 void show()
          called when this state is made the visible one.
 

Method Detail

getName

java.lang.String getName()
the name of the state, for example the name of the JSP file. States that belong to the same name will replace each other, i.e. there will be only one state for each name.


initialize

void initialize()
                throws java.lang.Exception
called once before the state is used

Throws:
java.lang.Exception

destroy

void destroy()
             throws java.lang.Exception
called once after the state is no longer used

Throws:
java.lang.Exception

show

void show()
          throws java.lang.Exception
called when this state is made the visible one. There is only one visible state

Throws:
java.lang.Exception

hide

void hide()
          throws java.lang.Exception
called when the

Throws:
java.lang.Exception