Uses of Interface
org.picocontainer.ComponentMonitor

Packages that use ComponentMonitor
org.picocontainer.defaults This package contains the default implementation of the PicoContainer API. 
org.picocontainer.monitors   
 

Uses of ComponentMonitor in org.picocontainer.defaults
 

Classes in org.picocontainer.defaults that implement ComponentMonitor
 class DelegatingComponentMonitor
           A monitor which delegates to another monitor.
 

Methods in org.picocontainer.defaults that return ComponentMonitor
 ComponentMonitor DecoratingComponentAdapter.currentMonitor()
          Returns delegate's current monitor if the delegate supports a component monitor strategy.
 ComponentMonitor AbstractMonitoringLifecycleStrategy.currentMonitor()
           
 ComponentMonitor MonitoringComponentAdapter.currentMonitor()
          Returns the monitor currently used
 ComponentMonitor DefaultPicoContainer.currentMonitor()
          Returns the first current monitor found in the ComponentAdapterFactory, the component adapters and the child containers, if these support a ComponentMonitorStrategy.
 ComponentMonitor MonitoringComponentAdapterFactory.currentMonitor()
          Returns the monitor currently used
 ComponentMonitor DelegatingComponentMonitor.currentMonitor()
           
 ComponentMonitor ComponentMonitorStrategy.currentMonitor()
          Returns the monitor currently used
 

Methods in org.picocontainer.defaults with parameters of type ComponentMonitor
 void DecoratingComponentAdapter.changeMonitor(ComponentMonitor monitor)
          Delegates change of monitor if the delegate supports a component monitor strategy.
 void DefaultComponentAdapterFactory.changeMonitor(ComponentMonitor monitor)
           
 void AbstractMonitoringLifecycleStrategy.changeMonitor(ComponentMonitor monitor)
           
 void MonitoringComponentAdapter.changeMonitor(ComponentMonitor monitor)
           
 void DefaultPicoContainer.changeMonitor(ComponentMonitor monitor)
          Changes monitor in the ComponentAdapterFactory, the component adapters and the child containers, if these support a ComponentMonitorStrategy.
 void MonitoringComponentAdapterFactory.changeMonitor(ComponentMonitor monitor)
           
 void DelegatingComponentMonitor.changeMonitor(ComponentMonitor monitor)
          If the delegate supports a monitor strategy, this is used to changed the monitor while keeping the same delegate.
 void ComponentMonitorStrategy.changeMonitor(ComponentMonitor monitor)
          Changes the component monitor used
 

Constructors in org.picocontainer.defaults with parameters of type ComponentMonitor
LifecycleVisitor(Method method, Class ofType, boolean visitInInstantiationOrder, ComponentMonitor monitor)
          Deprecated. since 1.2 in favour of LifecycleManager
SetterInjectionComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters, boolean allowNonPublicClasses, ComponentMonitor monitor, LifecycleStrategy lifecycleStrategy)
          Constructs a SetterInjectionComponentAdapter
SetterInjectionComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters, boolean allowNonPublicClasses, ComponentMonitor monitor)
          Constructs a SetterInjectionComponentAdapter
DefaultComponentAdapterFactory(ComponentMonitor monitor)
           
DefaultComponentAdapterFactory(ComponentMonitor monitor, LifecycleStrategy lifecycleStrategy)
           
ConstructorInjectionComponentAdapterFactory(boolean allowNonPublicClasses, ComponentMonitor monitor, LifecycleStrategy lifecycleStrategy)
           
ConstructorInjectionComponentAdapterFactory(boolean allowNonPublicClasses, ComponentMonitor monitor)
           
AbstractMonitoringLifecycleStrategy(ComponentMonitor monitor)
          Construct a AbstractMonitoringLifecylceStrategy.
MonitoringComponentAdapter(ComponentMonitor monitor)
          Constructs a MonitoringComponentAdapter with a custom monitor
DefaultPicoContainer(ComponentMonitor monitor, PicoContainer parent)
          Creates a new container with the DefaultComponentAdapterFactory using a custom ComponentMonitor
DefaultPicoContainer(ComponentMonitor monitor, LifecycleStrategy lifecycleStrategy, PicoContainer parent)
          Creates a new container with the DefaultComponentAdapterFactory using a custom ComponentMonitor and lifecycle strategy
DefaultPicoContainer(ComponentMonitor monitor)
          Creates a new container with the DefaultComponentAdapterFactory using a custom ComponentMonitor
DefaultLifecycleStrategy(ComponentMonitor monitor)
           
MonitoringComponentAdapterFactory(ComponentMonitor monitor)
          Constructs a MonitoringComponentAdapterFactory with a custom monitor
DelegatingComponentMonitor(ComponentMonitor delegate)
          Creates a DelegatingComponentMonitor with a given delegate
AbstractComponentAdapter(Object componentKey, Class componentImplementation, ComponentMonitor monitor)
          Constructs a new ComponentAdapter for the given key and implementation.
ConstructorInjectionComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters, boolean allowNonPublicClasses, ComponentMonitor monitor, LifecycleStrategy lifecycleStrategy)
          Creates a ConstructorInjectionComponentAdapter
ConstructorInjectionComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters, boolean allowNonPublicClasses, ComponentMonitor monitor)
          Creates a ConstructorInjectionComponentAdapter
InstantiatingComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters, boolean allowNonPublicClasses, ComponentMonitor monitor, LifecycleStrategy lifecycleStrategy)
          Constructs a new ComponentAdapter for the given key and implementation.
InstantiatingComponentAdapter(Object componentKey, Class componentImplementation, Parameter[] parameters, boolean allowNonPublicClasses, ComponentMonitor monitor)
          Constructs a new ComponentAdapter for the given key and implementation.
 

Uses of ComponentMonitor in org.picocontainer.monitors
 

Classes in org.picocontainer.monitors that implement ComponentMonitor
 class AbstractComponentMonitor
          An abstract ComponentMonitor which supports all the message formats.
 class ConsoleComponentMonitor
          A ComponentMonitor which writes to a OutputStream.
 class DefaultComponentMonitor
           
 class LifecycleComponentMonitor
          A ComponentMonitor which collects lifecycle failures and rethrows them on demand after the failures.
 class NullComponentMonitor
          A ComponentMonitor which does nothing.
 class WriterComponentMonitor
          A ComponentMonitor which writes to a Writer.
 

Constructors in org.picocontainer.monitors with parameters of type ComponentMonitor
WriterComponentMonitor(Writer out, ComponentMonitor delegate)
           
ConsoleComponentMonitor(OutputStream out, ComponentMonitor delegate)
           
LifecycleComponentMonitor(ComponentMonitor delegate)
           
 



Copyright © 2003-2007 Codehaus. All Rights Reserved.