| java.util.ArrayList javax.management.relation.RoleUnresolvedList
RoleUnresolvedList | public class RoleUnresolvedList extends ArrayList (Code) | | A list of unresolved roles.
Revisions:
20020313 Adrian Brock:
author: Adrian Brock version: $Revision: 57200 $ |
Method Summary | |
public void | add(RoleUnresolved roleUnresolved) Appends a unresolved role to the end of the list. | public void | add(int index, RoleUnresolved roleUnresolved) Adds an unresolved role at the specified location in the list. | public boolean | addAll(RoleUnresolvedList roleUnresolvedList) Appends an unresolved role list to the end of the list.
Parameters: roleUnresolvedList - the unresolved role list to append (can be null). | public boolean | addAll(int index, RoleUnresolvedList roleUnresolvedList) Inserts an unresolved role list at the specified location in the list.
Parameters: index - the location at which to insert the unresolved role list. Parameters: roleUnresolvedList - the unresolved role list to insert. | public Object | clone() Cloning. | public void | set(int index, RoleUnresolved roleUnresolved) Sets an unresolved role at the specified location in the list. |
RoleUnresolvedList | public RoleUnresolvedList()(Code) | | Construct an empty RoleUnresolvedList.
|
RoleUnresolvedList | public RoleUnresolvedList(int initialCapacity)(Code) | | Construct a RoleUnresolvedList with an initial capacity.
Parameters: initialCapacity - the initial capacity. |
RoleUnresolvedList | public RoleUnresolvedList(List list) throws IllegalArgumentException(Code) | | Construct a RoleUnresolvedList from a list. It must be an ArrayList.
The order of the list is maintained.
Parameters: list - the list to copy from. exception: IllegalArgumentException - for a null list oran list element that is not a role unresolved. |
clone | public Object clone()(Code) | | Cloning.
REVIEW: The spec says to return a RoleList, that's not very much
of a clone is it? It must be a typo in the RI.
the new unresolved role list with the same unresolved roles. |
|
|