Uses of Class
jfun.yan.lifecycle.Lifecycle

Packages that use Lifecycle
jfun.yan.lifecycle This package provides a solution for life cycle management to Yan container framework. 
 

Uses of Lifecycle in jfun.yan.lifecycle
 

Subclasses of Lifecycle in jfun.yan.lifecycle
 class DefaultLifecycleManager.DefaultLifecycle
          This class is a Lifecycle that directly supports the default "init-verify-open-start-stop-close-dispose" life-cycle scheme.
 

Methods in jfun.yan.lifecycle with parameters of type Lifecycle
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.closer(Lifecycle lc, Procedure proc)
          To register the "close" phase into a Lifecycle object.
The phase allows re-entry.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.closer(Lifecycle lc, Procedure proc, boolean reentrant)
          To register the "close" phase into a Lifecycle object.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.disposer(Lifecycle lc, Procedure proc)
          To register the "dispose" phase into a Lifecycle object.
The phase ignores re-entry.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.disposer(Lifecycle lc, Procedure proc, boolean reentrant)
          To register the "dispose" phase into a Lifecycle object.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.initializer(Lifecycle lc, Procedure proc)
          To register the "init" phase into a Lifecycle object.
The phase ignores re-entry.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.initializer(Lifecycle lc, Procedure proc, boolean reentrant)
          To register the "init" phase into a Lifecycle object.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.opener(Lifecycle lc, Procedure proc)
          To register the "open" phase into a Lifecycle object.
The phase allows re-entry.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.opener(Lifecycle lc, Procedure proc, boolean reentrant)
          To register the "open" phase into a Lifecycle object.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.starter(Lifecycle lc, Procedure proc)
          To register the "start" phase into a Lifecycle object.
The phase allows re-entry.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.starter(Lifecycle lc, Procedure proc, boolean reentrant)
          To register the "start" phase into a Lifecycle object.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.stopper(Lifecycle lc, Procedure proc)
          To register the "stop" phase into a Lifecycle object.
The phase allows re-entry.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.stopper(Lifecycle lc, Procedure proc, boolean reentrant)
          To register the "stop" phase into a Lifecycle object.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.verifier(Lifecycle lc, Procedure proc)
          To register the "verify" phase into a Lifecycle object.
The phase allows re-entry.
 DefaultLifecycleDescriptor DefaultLifecycleDescriptor.verifier(Lifecycle lc, Procedure proc, boolean reentrant)
          To register the "verify" phase into a Lifecycle object.