public class ActionClassInfo extends Object
| Constructor and Description |
|---|
ActionClassInfo()
Default constructor for ActionClassInfo.
|
ActionClassInfo(String actionName, Class<? extends Action> actionClass, ActionType actionType)
Create an ActionClassInfo initializing name, class, and type.
|
| Modifier and Type | Method and Description |
|---|---|
Class<? extends Action> |
getActionClass()
Return the class of this action.
|
String |
getActionName()
Return the name of this action.
|
ActionType |
getActionType()
Return the type of this action.
|
void |
setActionClass(Class<? extends Action> actionClass)
Set the class of this action.
|
void |
setActionName(String actionName)
Set the name of this action.
|
void |
setActionType(ActionType actionType)
Set the type of this action.
|
public ActionClassInfo()
public ActionClassInfo(String actionName, Class<? extends Action> actionClass, ActionType actionType)
actionName - the name of this actionactionClass - the class of the actionactionType - the type of the actionpublic String getActionName()
public void setActionName(String actionName)
actionName - the name of the actionpublic Class<? extends Action> getActionClass()
public void setActionClass(Class<? extends Action> actionClass)
actionClass - the action classpublic ActionType getActionType()
public void setActionType(ActionType actionType)
actionType - the action type