Uses of Class
jfun.yan.lifecycle.DefaultLifecycleDescriptor

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

Uses of DefaultLifecycleDescriptor in jfun.yan.lifecycle
 

Methods in jfun.yan.lifecycle that return DefaultLifecycleDescriptor
 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.
 

Constructors in jfun.yan.lifecycle with parameters of type DefaultLifecycleDescriptor
DefaultLifecycleManager(DefaultLifecycleDescriptor desc)
          To create a DefaultLifecycleManager object.