| java.util.ArrayList javax.management.AttributeList
Constructor Summary | |
public | AttributeList() Contruct a new empty attribute list. | public | AttributeList(int initialCapacity) Contruct a new empty attriute list with an initial capacity. | public | AttributeList(AttributeList list) Contruct a new attribute from another attribute list. |
Method Summary | |
public void | add(Attribute object) Append an Attribute to the list. | public void | add(int index, Attribute object) Insert a new Attribute into the list at the specified location. | public boolean | addAll(AttributeList list) Append the attributes the passed list to the end of this list.
Parameters: list - the attributes appended. | public boolean | addAll(int index, AttributeList list) Insert all the attributes in the passed list at the specified
location in this list.
Parameters: index - the location where the attributes are inserted. Parameters: list - the attributes inserted. | public void | set(int index, Attribute object) Change the attribute at the specified location. |
AttributeList | public AttributeList()(Code) | | Contruct a new empty attribute list.
|
AttributeList | public AttributeList(int initialCapacity)(Code) | | Contruct a new empty attriute list with an initial capacity.
Parameters: initialCapacity - the initial capacity reserved. |
AttributeList | public AttributeList(AttributeList list)(Code) | | Contruct a new attribute from another attribute list.
The order is determined by the ArrayList's iterator.
Parameters: list - the attribute list to copy. |
add | public void add(Attribute object)(Code) | | Append an Attribute to the list.
Parameters: object - the attribute to append. |
add | public void add(int index, Attribute object)(Code) | | Insert a new Attribute into the list at the specified location.
Parameters: index - the location to insert the attribute. Parameters: object - the attribute to insert. |
addAll | public boolean addAll(AttributeList list)(Code) | | Append the attributes the passed list to the end of this list.
Parameters: list - the attributes appended. true when the list changes as a result of this operation,false otherwise. |
addAll | public boolean addAll(int index, AttributeList list)(Code) | | Insert all the attributes in the passed list at the specified
location in this list.
Parameters: index - the location where the attributes are inserted. Parameters: list - the attributes inserted. true when the list changes as a result of this operation,false otherwise. |
set | public void set(int index, Attribute object)(Code) | | Change the attribute at the specified location.
Parameters: index - the location of he attribute to change. Parameters: object - the new attribute. |
|
|