| pnuts.xml.action.CallAction pnuts.xml.action.AddMapAction
AddMapAction | public class AddMapAction extends CallAction (Code) | | This action constructs a Map object from values that two child-elements
produce. This action is created with a keyword and the value.
e.g.
<map>
<key>age</key>
<value>0</value>
</map>
new AddMapAction("key", "value");
|
AddMapAction | public AddMapAction(String keyName, String valueName)(Code) | | Constructor
Parameters: keyName - a Keyword name in the rule that specifies which element is a key-part of the resulting Map entries. Parameters: valueName - a Keyword anem in the rule that specifies which element is a value-part of the resulting Map entries. |
|
|