Method Summary |
|
public Iterator<Action> | actions() Return an Iterator over this collection. |
public synchronized void | activationChanged(JInternalFrame frame) This function should be called whenever an internal frame is
activated. |
public void | add(Action action) Add an Action to this collection. |
public void | deactivationChanged(JInternalFrame frame) This function should be called whenever an internal frame is
deactivated. |
public void | enableAction(Class actionClass, boolean enable) Emable/Disable the instance of the passed Action class that is
stored in this collection. |
public synchronized Action | get(Class<? extends Action> actionClass) Returns the instance of the passed Action class that is stored
in this collection.
Parameters: actionClass - The Class of the Actionrequired. |
public synchronized Action | get(String actionClassName) Returns the instance of the passed Action class name that is
stored in this collection.
Parameters: actionClass - The Class of the Actionrequired. |
public void | internalFrameOpenedOrClosed(int nbrInternalFramesOpen) This function should be called whenever an internal frame is
opened or closed. |
public synchronized void | loadActionKeys(ActionKeys[] actionKeys) Apply these action keys to the actions currently loaded. |
public synchronized void | setCurrentSession(ISession session) Specify the current session for actions.
Parameters: session - The current session. |