XmlMapCollection

XmlMapCollection class

A collection of XmlMap objects that represent XmlMap information.

class XmlMapCollection;

Methods

MethodDescription
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.
getCount()Gets the number of elements contained in.

get(number)

Gets the xml map by the specific index.

get(index: number) : XmlMap;

Parameters:

ParameterTypeDescription
indexnumberThe index.

Returns

The xml map

add(string)

Add a XmlMap by the url/path of a xml/xsd file.

add(url: string) : number;

Parameters:

ParameterTypeDescription
urlstringurl/path of a xml/xsd file.

Returns

XmlMap object index.

clear()

Removes all XmlMaps.

clear() : void;

getCount()

Gets the number of elements contained in.

getCount() : number;