Uses of Interface
jfun.yan.lifecycle.ExceptionHandler

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

Uses of ExceptionHandler in jfun.yan.lifecycle
 

Methods in jfun.yan.lifecycle that return ExceptionHandler
 ExceptionHandler Phase.getExceptionHandler()
          To get the exception handler of this phase.
static ExceptionHandler ExceptionHandlers.printer()
          Get an ExceptionHandler object that prints the stack trace to System.err.
static ExceptionHandler ExceptionHandlers.printer(java.io.PrintStream out)
          Get an ExceptionHandler object that prints the stack trace to a PrintStream object.
static ExceptionHandler ExceptionHandlers.suppresser()
          Get an ExceptionHandler object that silently ignores any exception thrown out of the action.
static ExceptionHandler ExceptionHandlers.thrower()
          Get an ExceptionHandler object that re-throw the exception.
static ExceptionHandler ExceptionHandlers.writer(java.io.PrintWriter out)
          Get an ExceptionHandler object that prints the stack trace to a PrintWriter object.
 

Methods in jfun.yan.lifecycle with parameters of type ExceptionHandler
 void LifecycleManager.fifo(java.lang.Object key, java.lang.Object[] args, ExceptionHandler handler)
          Invoke a certain phase for all managed instances in the creation order.
 void LifecycleManager.filo(java.lang.Object key, java.lang.Object[] args, ExceptionHandler handler)
          Invoke a certain phase for all managed instances in the reverse order of creation.
 

Constructors in jfun.yan.lifecycle with parameters of type ExceptionHandler
Phase(java.lang.Object key, ExceptionHandler handler)
          To created a Phase object.