XmlMapCollection
Contents
[
Hide
]XmlMapCollection class
A collection of XmlMap objects that represent XmlMap information.
class XmlMapCollection;
Methods
| Method | Description |
|---|---|
| get(number) | Gets the xml map by the specific index. |
| add(string) | Add a XmlMap by the url/path of a xml/xsd file. |
| clear() | Removes all XmlMaps. |
get(number)
Gets the xml map by the specific index.
get(index: number) : XmlMap;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | number | The index. |
Returns
The xml map
add(string)
Add a XmlMap by the url/path of a xml/xsd file.
add(url: string) : number;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| url | string | url/path of a xml/xsd file. |
Returns
XmlMap object index.
clear()
Removes all XmlMaps.
clear() : void;