org.picocontainer
Interface LifecycleManager

All Known Implementing Classes:
DefaultLifecycleManager, OldLifecycleManager, RootVisitingLifecycleManager

public interface LifecycleManager

Version:
$Revision: 1841 $
Author:
Paul Hammant

Method Summary
 void dispose(PicoContainer node)
          Invoke the "dispose" method on the container's components and child components.
 void start(PicoContainer node)
          Invoke the "start" method on the container's components and child components.
 void stop(PicoContainer node)
          Invoke the "stop" method on the container's components and child components.
 

Method Detail

start

public void start(PicoContainer node)
Invoke the "start" method on the container's components and child components. It is up to the implementor to define exactly what a component's "start" method is.

Parameters:
node - The node to start the traversal.

stop

public void stop(PicoContainer node)
Invoke the "stop" method on the container's components and child components. It is up to the implementor to define exactly what a component's "stop" method is.

Parameters:
node - The node to start the traversal.

dispose

public void dispose(PicoContainer node)
Invoke the "dispose" method on the container's components and child components. It is up to the implementor to define exactly what a component's "dispose" method is.

Parameters:
node - The node to start the traversal.


Copyright © 2003-2005 Codehaus. All Rights Reserved.