org.moyoman.client.reference.admin
Class AdminManager

java.lang.Object
  |
  +--org.moyoman.client.reference.admin.AdminManager

public class AdminManager
extends Object

Provides a manager for Moyoman Go administration. This class provides Actions and their perform methods to manipulate the Moyoman administration GUIs.

Since:
v0.03
Version:
v0.15
Author:
Jeffrey M. Thompson

Field Summary
private  ActionManager _actionManager
          The action manager.
private  IMoyomanAdminOwner _owner
          Owner.
 
Constructor Summary
AdminManager(IMoyomanAdminOwner owner)
          Construct this object.
 
Method Summary
 void checkActions()
          Check the actions for their enabled status.
 void clear()
          Clear all actions.
protected  ActionManager getActionManager()
          Return the action manager, creating it if necessary.
 Action getHelperAdminAction()
          Return the helper admin action.
 Action getMessageAdminAction()
          Return the message admin action.
 Action getModeAdminAction()
          Return the mode admin action.
 Action getModuleAdminAction()
          Return the module admin action.
 Action getSystemAdminAction()
          Return the system admin action.
 void helperAdminActionPerformed(ActionEvent event)
          Perform the helper admin action.
 void messageAdminActionPerformed(ActionEvent event)
          Perform the message admin action.
 void modeAdminActionPerformed(ActionEvent event)
          Perform the mode admin action.
 void moduleAdminActionPerformed(ActionEvent event)
          Perform the module admin action.
 void systemAdminActionPerformed(ActionEvent event)
          Perform the system admin action.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_actionManager

private ActionManager _actionManager
The action manager.


_owner

private IMoyomanAdminOwner _owner
Owner.

Constructor Detail

AdminManager

public AdminManager(IMoyomanAdminOwner owner)
Construct this object.

Parameters:
owner - Owner.
Since:
v0.03
Method Detail

getHelperAdminAction

public Action getHelperAdminAction()
Return the helper admin action.

Since:
v0.03

getMessageAdminAction

public Action getMessageAdminAction()
Return the message admin action.

Since:
v0.03

getModeAdminAction

public Action getModeAdminAction()
Return the mode admin action.

Since:
v0.03

getModuleAdminAction

public Action getModuleAdminAction()
Return the module admin action.

Since:
v0.03

getSystemAdminAction

public Action getSystemAdminAction()
Return the system admin action.

Since:
v0.03

checkActions

public void checkActions()
Check the actions for their enabled status.

Since:
v0.03

clear

public void clear()
Clear all actions.

Since:
v0.15

helperAdminActionPerformed

public void helperAdminActionPerformed(ActionEvent event)
Perform the helper admin action. Displays the HelperAdminDialog.

Since:
v0.03

messageAdminActionPerformed

public void messageAdminActionPerformed(ActionEvent event)
Perform the message admin action. Displays the MessageAdminDialog.

Since:
v0.03

modeAdminActionPerformed

public void modeAdminActionPerformed(ActionEvent event)
Perform the mode admin action. Displays the ModeAdminDialog.

Since:
v0.03

moduleAdminActionPerformed

public void moduleAdminActionPerformed(ActionEvent event)
Perform the module admin action. Displays the ModuleAdminDialog.

Since:
v0.03

systemAdminActionPerformed

public void systemAdminActionPerformed(ActionEvent event)
Perform the system admin action. Displays the SystemAdminDialog.

Since:
v0.03

getActionManager

protected ActionManager getActionManager()
Return the action manager, creating it if necessary.

Since:
v0.03