| org.picocontainer.Behavior
All known Subclasses: org.picocontainer.gems.behaviors.Pooled,
Behavior | public interface Behavior extends ComponentAdapter<T>(Code) | | Behaviors modify the components created by a Injector with additional behaviors
author: Paul Hammant author: Jörg Schaible author: Mauro Talevi See Also: LifecycleStrategy |
componentHasLifecycle | boolean componentHasLifecycle()(Code) | | Test if a component honors a lifecycle.
true if the component has a lifecycle |
dispose | void dispose(PicoContainer container)(Code) | | Invoke the "dispose" method on the component.
Parameters: container - the container to "dispose" the component |
start | void start(PicoContainer container)(Code) | | Invoke the "start" method on the component.
Parameters: container - the container to "start" the component |
stop | void stop(PicoContainer container)(Code) | | Invoke the "stop" method on the component.
Parameters: container - the container to "stop" the component |
|
|