org.apache.commons.configuration.plist

Class XMLPropertyListConfiguration.ArrayNode

public static class XMLPropertyListConfiguration.ArrayNode extends XMLPropertyListConfiguration.PListNode

Container for array elements. Do not use this class ! It is used internally by XMLPropertyConfiguration to parse the configuration file, it may be removed at any moment in the future.
Field Summary
Listlist
The list of values in the array.
static longserialVersionUID
The serial version UID.
Method Summary
voidaddValue(Object value)
Add an object to the array.
ObjectgetValue()
Return the list of values in the array.

Field Detail

list

private List list
The list of values in the array.

serialVersionUID

private static final long serialVersionUID
The serial version UID.

Method Detail

addValue

public void addValue(Object value)
Add an object to the array.

Parameters: value the value to be added

getValue

public Object getValue()
Return the list of values in the array.

Returns: the List of values