Uses of Interface
org.picocontainer.Parameter

Packages that use Parameter
org.picocontainer This package contains the core API for PicoContainer, a compact container for working with the dependency injection pattern. 
org.picocontainer.alternatives   
org.picocontainer.defaults This package contains the default implementation of the PicoContainer API. 
 

Uses of Parameter in org.picocontainer
 

Methods in org.picocontainer with parameters of type Parameter
 void PicoVisitor.visitParameter(Parameter parameter)
          Visit a Parameter that has to accept the visitor.
 ComponentAdapter MutablePicoContainer.registerComponentImplementation(Object componentKey, Class componentImplementation, Parameter[] parameters)
          Register a component.
 

Uses of Parameter in org.picocontainer.alternatives
 

Methods in org.picocontainer.alternatives with parameters of type Parameter
 ComponentAdapter ImplementationHidingPicoContainer.registerComponentImplementation(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
 ComponentAdapter ImplementationHidingComponentAdapterFactory.createComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
 ComponentAdapter ImplementationHidingCachingPicoContainer.registerComponentImplementation(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
 ComponentAdapter AbstractDelegatingMutablePicoContainer.registerComponentImplementation(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
 

Uses of Parameter in org.picocontainer.defaults
 

Classes in org.picocontainer.defaults that implement Parameter
 class BasicComponentParameter
          A BasicComponentParameter should be used to pass in a particular component as argument to a different component's constructor.
 class CollectionComponentParameter
          A CollectionComponentParameter should be used to support inject an Array, a Collectionor Mapof components automatically.
 class ComponentParameter
          A ComponentParameter should be used to pass in a particular component as argument to a different component's constructor.
 class ConstantParameter
          A ConstantParameter should be used to pass in "constant" arguments to constructors.
 

Fields in org.picocontainer.defaults declared as Parameter
protected  Parameter[] InstantiatingComponentAdapter.parameters
          The parameters to use for initialization.
 

Methods in org.picocontainer.defaults that return Parameter
protected  Parameter[] InstantiatingComponentAdapter.createDefaultParameters(Class[] parameters)
          Create default parameters for the given types.
 

Methods in org.picocontainer.defaults with parameters of type Parameter
 void VerifyingVisitor.visitParameter(Parameter parameter)
          Visit a Parameter that has to accept the visitor.
 ComponentAdapter SynchronizedComponentAdapterFactory.createComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
 ComponentAdapter SetterInjectionComponentAdapterFactory.createComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
          Create a SetterInjectionComponentAdapter.
 void LifecycleVisitor.visitParameter(Parameter parameter)
           
 ComponentAdapter DefaultPicoContainer.registerComponentImplementation(Object componentKey, Class componentImplementation, Parameter[] parameters)
          Register a component. The returned ComponentAdapter will be instantiated by the ComponentAdapterFactory passed to the container's constructor.
 ComponentAdapter DefaultComponentAdapterFactory.createComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
 ComponentAdapter DecoratingComponentAdapterFactory.createComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
 ComponentAdapter ConstructorInjectionComponentAdapterFactory.createComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
 ComponentAdapter ComponentAdapterFactory.createComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
          Create a new component adapter based on the specified arguments.
 ComponentAdapter CachingComponentAdapterFactory.createComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
 ComponentAdapter BeanPropertyComponentAdapterFactory.createComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
          
 

Constructors in org.picocontainer.defaults with parameters of type Parameter
SetterInjectionComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters, boolean allowNonPublicClasses)
          {@inheritDoc} Explicitly specifies parameters, if null uses default parameters.
SetterInjectionComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
InstantiatingComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters, boolean allowNonPublicClasses)
          Constructs a new ComponentAdapter for the given key and implementation.
ConstructorInjectionComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters, boolean allowNonPublicClasses, ComponentMonitor componentMonitor)
          Explicitly specifies parameters.
ConstructorInjectionComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters)
           
 



Copyright © 2003-2005 Codehaus. All Rights Reserved.