| java.lang.Object org.apache.commons.scxml.model.CustomAction
CustomAction | public class CustomAction (Code) | | A custom action is simply a tuple consisting of a namespace URI,
the local name for the custom action and the corresponding
Action class.
|
CustomAction | public CustomAction(String namespaceURI, String localName, Class actionClass)(Code) | | Constructor, if the namespace or local name is null or empty,
or if the implementation is not an
Action , an
IllegalArgumentException is thrown.
Parameters: namespaceURI - The namespace URI for this custom action. Parameters: localName - The local name for this custom action. Parameters: actionClass - The Action subclass implementing thiscustom action. |
getActionClass | public Class getActionClass()(Code) | | Get this custom action's implementation.
Returns the action class. |
getLocalName | public String getLocalName()(Code) | | Get the local name for this custom action.
Returns the local name. |
getNamespaceURI | public String getNamespaceURI()(Code) | | Get the namespace URI for this custom action.
Returns the namespace URI. |
|
|