Index
All Classes and Interfaces|All Packages
A
- AbstractActiveList - Class in org.codehaus.plexus.collections
- AbstractActiveList() - Constructor for class org.codehaus.plexus.collections.AbstractActiveList
- AbstractActiveList(PlexusContainer, String) - Constructor for class org.codehaus.plexus.collections.AbstractActiveList
- AbstractActiveMap - Class in org.codehaus.plexus.collections
- AbstractActiveMap() - Constructor for class org.codehaus.plexus.collections.AbstractActiveMap
- AbstractActiveMap(PlexusContainer, String) - Constructor for class org.codehaus.plexus.collections.AbstractActiveMap
- AbstractActiveSet - Class in org.codehaus.plexus.collections
- AbstractActiveSet() - Constructor for class org.codehaus.plexus.collections.AbstractActiveSet
- AbstractActiveSet(PlexusContainer, String) - Constructor for class org.codehaus.plexus.collections.AbstractActiveSet
- ActiveCollection - Interface in org.codehaus.plexus.collections
-
Represents a collection-style view of a
PlexusContainer
instance, which retrieves a fresh batch of component elements for each method call. - ActiveCollectionManager - Interface in org.codehaus.plexus.collections
-
Manager interface provided for backward compatibility to apps using plexus-container-default with versions under 1.0-alpha-22.
- ActiveList - Interface in org.codehaus.plexus.collections
-
Collection with
List
semantics, which is backed by aPlexusContainer
instance, and retrieves a fresh batch of elements for each method call. - ActiveMap - Interface in org.codehaus.plexus.collections
-
Type of
Map
, which is backed by aPlexusContainer
instance, and retrieves a fresh batch of elements for each method call. - ActiveSet - Interface in org.codehaus.plexus.collections
-
Collection with
Set
semantics, which is backed by aPlexusContainer
instance, and retrieves a fresh batch of elements for each method call. - add(int, Object) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- add(Object) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- add(Object) - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- addAll(int, Collection) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- addAll(Collection) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- addAll(Collection) - Method in class org.codehaus.plexus.collections.AbstractActiveSet
C
- checkedContains(Object) - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.contains(Object)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedContains(Object) - Method in interface org.codehaus.plexus.collections.ActiveSet
-
Same as
Set.contains(Object)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedContains(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedContains(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- checkedContainsAll(Collection) - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.containsAll(Collection)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedContainsAll(Collection) - Method in interface org.codehaus.plexus.collections.ActiveSet
-
Same as
Set.containsAll(Collection)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedContainsAll(Collection) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedContainsAll(Collection) - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- checkedContainsKey(Object) - Method in interface org.codehaus.plexus.collections.ActiveMap
-
Same as
Map.containsKey(Object)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedContainsKey(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- checkedContainsValue(Object) - Method in interface org.codehaus.plexus.collections.ActiveMap
-
Same as
Map.containsValue(Object)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedContainsValue(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- checkedEntrySet() - Method in interface org.codehaus.plexus.collections.ActiveMap
-
Same as
Map.entrySet()
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedEntrySet() - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- checkedGet(int) - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.get(int)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedGet(int) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedGet(Object) - Method in interface org.codehaus.plexus.collections.ActiveMap
-
Same as
Map.get(Object)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedGet(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- checkedGetList() - Method in class org.codehaus.plexus.collections.AbstractActiveList
- checkedGetMap() - Method in class org.codehaus.plexus.collections.AbstractActiveMap
- checkedGetSet() - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- checkedIndexOf(Object) - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.indexOf(Object)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedIndexOf(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedIsEmpty() - Method in interface org.codehaus.plexus.collections.ActiveCollection
-
Same semantics as
Collection.isEmpty()
orMap.isEmpty()
, except this method will throw aComponentLookupException
if one or more of the elements collected here fails during lookup. - checkedIsEmpty() - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedIsEmpty() - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- checkedIsEmpty() - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- checkedIterator() - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.iterator()
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedIterator() - Method in interface org.codehaus.plexus.collections.ActiveSet
-
Same as
Set.iterator()
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedIterator() - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedIterator() - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- checkedKeySet() - Method in interface org.codehaus.plexus.collections.ActiveMap
-
Same as
Map#keySet(Object)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedKeySet() - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- checkedLastIndexOf(Object) - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.lastIndexOf(Object)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedLastIndexOf(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedListIterator() - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.listIterator()
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedListIterator() - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedListIterator(int) - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.listIterator(int)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedListIterator(int) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedSize() - Method in interface org.codehaus.plexus.collections.ActiveCollection
-
Same semantics as
Collection.size()
orMap.size()
, except this method will throw aComponentLookupException
if one or more of the elements collected here fails during lookup. - checkedSize() - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedSize() - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- checkedSize() - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- checkedSubList(int, int) - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.subList(int, int)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedSubList(int, int) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedToArray() - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.toArray()
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedToArray() - Method in interface org.codehaus.plexus.collections.ActiveSet
-
Same as
Set.toArray()
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedToArray() - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedToArray() - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- checkedToArray(Object[]) - Method in interface org.codehaus.plexus.collections.ActiveList
-
Same as
List.toArray(Object[])
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedToArray(Object[]) - Method in interface org.codehaus.plexus.collections.ActiveSet
-
Same as
Set.toArray(Object[])
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedToArray(Object[]) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- checkedToArray(Object[]) - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- checkedValues() - Method in interface org.codehaus.plexus.collections.ActiveMap
-
Same as
Map#values(Object)
, except this method will throw aComponentLookupException
if one or more elements in the set fail during lookup. - checkedValues() - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- clear() - Method in class org.codehaus.plexus.collections.AbstractActiveList
- clear() - Method in class org.codehaus.plexus.collections.AbstractActiveMap
- clear() - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- container - Variable in class org.codehaus.plexus.collections.AbstractActiveList
- container - Variable in class org.codehaus.plexus.collections.AbstractActiveMap
- container - Variable in class org.codehaus.plexus.collections.AbstractActiveSet
- container - Variable in class org.codehaus.plexus.collections.DefaultActiveCollectionManager
- container - Variable in class org.codehaus.plexus.collections.DefaultProtoCollection
- contains(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- contains(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- containsAll(Collection) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- containsAll(Collection) - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- containsKey(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- containsValue(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- contextualize(Context) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- contextualize(Context) - Method in class org.codehaus.plexus.collections.AbstractActiveMap
- contextualize(Context) - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- contextualize(Context) - Method in class org.codehaus.plexus.collections.DefaultActiveCollectionManager
- contextualize(Context) - Method in class org.codehaus.plexus.collections.DefaultProtoCollection
D
- DefaultActiveCollectionManager - Class in org.codehaus.plexus.collections
- DefaultActiveCollectionManager() - Constructor for class org.codehaus.plexus.collections.DefaultActiveCollectionManager
- DefaultActiveList - Class in org.codehaus.plexus.collections
- DefaultActiveList() - Constructor for class org.codehaus.plexus.collections.DefaultActiveList
- DefaultActiveList(PlexusContainer, Class) - Constructor for class org.codehaus.plexus.collections.DefaultActiveList
- DefaultActiveList(PlexusContainer, String) - Constructor for class org.codehaus.plexus.collections.DefaultActiveList
- DefaultActiveMap - Class in org.codehaus.plexus.collections
- DefaultActiveMap() - Constructor for class org.codehaus.plexus.collections.DefaultActiveMap
- DefaultActiveMap(PlexusContainer, Class) - Constructor for class org.codehaus.plexus.collections.DefaultActiveMap
- DefaultActiveMap(PlexusContainer, String) - Constructor for class org.codehaus.plexus.collections.DefaultActiveMap
- DefaultActiveSet - Class in org.codehaus.plexus.collections
- DefaultActiveSet() - Constructor for class org.codehaus.plexus.collections.DefaultActiveSet
- DefaultActiveSet(PlexusContainer, Class) - Constructor for class org.codehaus.plexus.collections.DefaultActiveSet
- DefaultActiveSet(PlexusContainer, String) - Constructor for class org.codehaus.plexus.collections.DefaultActiveSet
- DefaultProtoCollection - Class in org.codehaus.plexus.collections
- DefaultProtoCollection() - Constructor for class org.codehaus.plexus.collections.DefaultProtoCollection
- DefaultProtoCollection(PlexusContainer, String) - Constructor for class org.codehaus.plexus.collections.DefaultProtoCollection
E
- enableLogging(Logger) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- enableLogging(Logger) - Method in class org.codehaus.plexus.collections.AbstractActiveMap
- enableLogging(Logger) - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- entrySet() - Method in class org.codehaus.plexus.collections.DefaultActiveMap
G
- get(int) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- get(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- getActiveList() - Method in class org.codehaus.plexus.collections.DefaultProtoCollection
- getActiveList() - Method in interface org.codehaus.plexus.collections.ProtoCollection
-
Retrieve an
ActiveList
instance that contains components matching the role given byProtoCollection.getCollectedRole()
. - getActiveList(Class) - Method in interface org.codehaus.plexus.collections.ActiveCollectionManager
-
Retrieve an
ActiveList
instance that contains the components of the given role. - getActiveList(Class) - Method in class org.codehaus.plexus.collections.DefaultActiveCollectionManager
- getActiveList(String) - Method in interface org.codehaus.plexus.collections.ActiveCollectionManager
-
Retrieve an
ActiveList
instance that contains the components of the given role. - getActiveList(String) - Method in class org.codehaus.plexus.collections.DefaultActiveCollectionManager
- getActiveMap() - Method in class org.codehaus.plexus.collections.DefaultProtoCollection
- getActiveMap() - Method in interface org.codehaus.plexus.collections.ProtoCollection
-
Retrieve an
ActiveMap
instance that contains components matching the role given byProtoCollection.getCollectedRole()
. - getActiveMap(Class) - Method in interface org.codehaus.plexus.collections.ActiveCollectionManager
-
Retrieve an
ActiveMap
instance that contains the components of the given role. - getActiveMap(Class) - Method in class org.codehaus.plexus.collections.DefaultActiveCollectionManager
- getActiveMap(String) - Method in interface org.codehaus.plexus.collections.ActiveCollectionManager
-
Retrieve an
ActiveMap
instance that contains the components of the given role. - getActiveMap(String) - Method in class org.codehaus.plexus.collections.DefaultActiveCollectionManager
- getActiveSet() - Method in class org.codehaus.plexus.collections.DefaultProtoCollection
- getActiveSet() - Method in interface org.codehaus.plexus.collections.ProtoCollection
-
Retrieve an
ActiveSet
instance that contains components matching the role given byProtoCollection.getCollectedRole()
. - getActiveSet(Class) - Method in interface org.codehaus.plexus.collections.ActiveCollectionManager
-
Retrieve an
ActiveSet
instance that contains the components of the given role. - getActiveSet(Class) - Method in class org.codehaus.plexus.collections.DefaultActiveCollectionManager
- getActiveSet(String) - Method in interface org.codehaus.plexus.collections.ActiveCollectionManager
-
Retrieve an
ActiveSet
instance that contains the components of the given role. - getActiveSet(String) - Method in class org.codehaus.plexus.collections.DefaultActiveCollectionManager
- getCollectedRole() - Method in class org.codehaus.plexus.collections.DefaultProtoCollection
- getCollectedRole() - Method in interface org.codehaus.plexus.collections.ProtoCollection
-
Retrieve the role of components to be collected by any of the active collections created here.
- getList() - Method in class org.codehaus.plexus.collections.AbstractActiveList
- getLogger() - Method in class org.codehaus.plexus.collections.AbstractActiveList
- getLogger() - Method in class org.codehaus.plexus.collections.AbstractActiveMap
- getLogger() - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- getMap() - Method in class org.codehaus.plexus.collections.AbstractActiveMap
- getRole() - Method in class org.codehaus.plexus.collections.AbstractActiveList
- getRole() - Method in class org.codehaus.plexus.collections.AbstractActiveMap
- getRole() - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- getRole() - Method in interface org.codehaus.plexus.collections.ActiveCollection
-
Retrive the role, or type of component, which is collected in the current instance.
- getSet() - Method in class org.codehaus.plexus.collections.AbstractActiveSet
I
- indexOf(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- isEmpty() - Method in interface org.codehaus.plexus.collections.ActiveCollection
-
Same semantics as
Collection.isEmpty()
orMap.isEmpty()
. - isEmpty() - Method in class org.codehaus.plexus.collections.DefaultActiveList
- isEmpty() - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- isEmpty() - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- iterator() - Method in class org.codehaus.plexus.collections.DefaultActiveList
- iterator() - Method in class org.codehaus.plexus.collections.DefaultActiveSet
K
- keySet() - Method in class org.codehaus.plexus.collections.DefaultActiveMap
L
- lastIndexOf(Object) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- listIterator() - Method in class org.codehaus.plexus.collections.DefaultActiveList
- listIterator(int) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- logger - Variable in class org.codehaus.plexus.collections.AbstractActiveList
- logger - Variable in class org.codehaus.plexus.collections.AbstractActiveMap
- logger - Variable in class org.codehaus.plexus.collections.AbstractActiveSet
O
- org.codehaus.plexus.collections - package org.codehaus.plexus.collections
P
- ProtoCollection - Interface in org.codehaus.plexus.collections
-
Represents an undifferentiated ActiveCollection instance, with the same configuration (role).
- put(Object, Object) - Method in class org.codehaus.plexus.collections.AbstractActiveMap
- putAll(Map) - Method in class org.codehaus.plexus.collections.AbstractActiveMap
R
- remove(int) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- remove(Object) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- remove(Object) - Method in class org.codehaus.plexus.collections.AbstractActiveMap
- remove(Object) - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- removeAll(Collection) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- removeAll(Collection) - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- retainAll(Collection) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- retainAll(Collection) - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- role - Variable in class org.codehaus.plexus.collections.AbstractActiveList
- role - Variable in class org.codehaus.plexus.collections.AbstractActiveMap
- role - Variable in class org.codehaus.plexus.collections.AbstractActiveSet
- role - Variable in class org.codehaus.plexus.collections.DefaultProtoCollection
- ROLE - Static variable in interface org.codehaus.plexus.collections.ActiveCollectionManager
- ROLE - Static variable in interface org.codehaus.plexus.collections.ActiveList
- ROLE - Static variable in interface org.codehaus.plexus.collections.ActiveMap
- ROLE - Static variable in interface org.codehaus.plexus.collections.ActiveSet
- ROLE - Static variable in interface org.codehaus.plexus.collections.ProtoCollection
S
- set(int, Object) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- setRole(String) - Method in class org.codehaus.plexus.collections.AbstractActiveList
- setRole(String) - Method in class org.codehaus.plexus.collections.AbstractActiveMap
- setRole(String) - Method in class org.codehaus.plexus.collections.AbstractActiveSet
- size() - Method in interface org.codehaus.plexus.collections.ActiveCollection
-
Same semantics as
Collection.size()
orMap.size()
. - size() - Method in class org.codehaus.plexus.collections.DefaultActiveList
- size() - Method in class org.codehaus.plexus.collections.DefaultActiveMap
- size() - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- subList(int, int) - Method in class org.codehaus.plexus.collections.DefaultActiveList
T
- toArray() - Method in class org.codehaus.plexus.collections.DefaultActiveList
- toArray() - Method in class org.codehaus.plexus.collections.DefaultActiveSet
- toArray(Object[]) - Method in class org.codehaus.plexus.collections.DefaultActiveList
- toArray(Object[]) - Method in class org.codehaus.plexus.collections.DefaultActiveSet
V
- values() - Method in class org.codehaus.plexus.collections.DefaultActiveMap
All Classes and Interfaces|All Packages