|
||||||||||
| PREV CLASS (src) NEXT CLASS (src) | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractCollection
java.util.AbstractList
java.util.ArrayList
javax.management.AttributeList
A list of a MBean attributes.
An AttributeList can be used to get and set multiple MBean attributes in one invocation.
It is an array list that can only contain
Attribute (src) s
Note: AttributeLists must be externally synchronized.
Attribute (src) ,
Serialized Form| Field Summary |
| Fields inherited from class java.util.AbstractList |
modCount |
| Constructor Summary | |
AttributeList()
Contruct a new empty attribute list. |
|
AttributeList(AttributeList (src) list)
Contruct a new attribute from another attribute list. |
|
AttributeList(int initialCapacity)
Contruct a new empty attriute list with an initial capacity. |
|
| Method Summary | |
void |
add(Attribute (src) object)
Append an Attribute to the list. |
void |
add(int index,
Attribute (src) object)
Insert a new Attribute into the list at the specified location. |
boolean |
addAll(AttributeList (src) list)
Append the attributes the passed list to the end of this list. |
boolean |
addAll(int index,
AttributeList (src) list)
Insert all the attributes in the passed list at the specified location in this list. |
void |
set(int index,
Attribute (src) object)
Change the attribute at the specified location. |
| Methods inherited from class java.util.ArrayList |
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, removeRange, set, size, toArray, toArray, trimToSize |
| Methods inherited from class java.util.AbstractList |
equals, hashCode, iterator, listIterator, listIterator, subList |
| Methods inherited from class java.util.AbstractCollection |
containsAll, remove, removeAll, retainAll, toString |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
containsAll, equals, hashCode, iterator, listIterator, listIterator, remove, removeAll, retainAll, subList |
| Constructor Detail |
public AttributeList()
public AttributeList(int initialCapacity)
initialCapacity - the initial capacity reserved.public AttributeList(AttributeList (src) list)
list - the attribute list to copy.| Method Detail |
public void add(Attribute (src) object)
object - the attribute to append.
public void add(int index,
Attribute (src) object)
index - the location to insert the attribute.object - the attribute to insert.
public void set(int index,
Attribute (src) object)
index - the location of he attribute to change.object - the new attribute.public boolean addAll(AttributeList (src) list)
list - the attributes appended.
public boolean addAll(int index,
AttributeList (src) list)
index - the location where the attributes are inserted.list - the attributes inserted.
|
||||||||||
| PREV CLASS (src) NEXT CLASS (src) | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||