String[String]
Associative array with the attributes that correspond to an XML node. Below an example that sets to the "taxes" node of an "invoice" xml document, the attributes that represent each tax and the perfectage that applies to the invoice.
| taxes as String[String] taxes["IVA"] = "21%" taxes["ANOTHER TAX"] = "1%" ... xmlNode2 = addChildFor(xmlNode, tag : "taxes") xmlNode2.text = "1220" xmlNode2.attributes = taxes |
Sets attributes of this node.