KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > management > relation > RoleList

javax.management.relation
Class RoleList

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractList<E>
          extended by java.util.ArrayList
              extended by javax.management.relation.RoleList
All Implemented Interfaces:
Serializable, Cloneable, Iterable, Collection, List, RandomAccess
See Also:
Top Examples, Source Code

public void add(int theIndex,
                Role theRole)
         throws IllegalArgumentException,
                IndexOutOfBoundsException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void add(Role theRole)
         throws IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean addAll(int theIndex,
                      RoleList theRoleList)
               throws IllegalArgumentException,
                      IndexOutOfBoundsException
See Also:
ArrayList.addAll(int, Collection)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean addAll(RoleList theRoleList)
               throws IndexOutOfBoundsException
See Also:
ArrayList.addAll(Collection)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public RoleList()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public RoleList(int theInitialCapacity)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public RoleList(List theList)
         throws IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void set(int theIndex,
                Role theRole)
         throws IllegalArgumentException,
                IndexOutOfBoundsException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags