| java.lang.Object pnuts.xml.DigestAction pnuts.xml.action.SimpleCallAction
SimpleCallAction | abstract public class SimpleCallAction extends DigestAction (Code) | | This action does some computation with the element's attributes as
the parameters. A subclass defines a concrete implementation.
|
SimpleCallAction | public SimpleCallAction()(Code) | | Constructor
|
SimpleCallAction | public SimpleCallAction(String[] parameterNames)(Code) | | Constructor
Parameters: parameterNames - the parameter names |
call | abstract protected void call(Object[] args)(Code) | | Subclass should override this method.
Parameters: args - the arguments. |
call | protected void call(Map attributeMap)(Code) | | Calls call(Object[]) method with a single argument, a Map object, which contains
{ qualified_name => value } mappings.
Parameters: attributeMap - the attributes of the start element |
callWithNamedParameters | protected void callWithNamedParameters(Map attributeMap)(Code) | | Calls call(Object[]) method, assuming the parameter names are given to the constructor.
The actual parameters are marshaled from the attributes, in the order of the parameter names.
Parameters: attributeMap - the attributes of the start element |
getParameterNames | public String[] getParameterNames()(Code) | | Gets the parameter names
|
setParameterNames | public void setParameterNames(String[] parameterNames)(Code) | | Sets the parameter names
Parameters: parameterNames - the parameter names |
|
|