Class LogListener
- java.lang.Object
-
- org.nuiton.jaxx.runtime.swing.application.event.LogListener
-
- All Implemented Interfaces:
EventListener,ActionExecutorListener
public class LogListener extends Object implements ActionExecutorListener
-
-
Constructor Summary
Constructors Constructor Description LogListener(org.apache.logging.log4j.Logger log)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidactionCancel(ActionExecutorEvent event)When action has cancel.voidactionDone(ActionExecutorEvent event)When action has done.voidactionEnd(ActionExecutorEvent event)When action has end.voidactionFail(ActionExecutorEvent event)When action has failed.voidactionStart(ActionExecutorEvent event)When action has started.
-
-
-
Method Detail
-
actionStart
public void actionStart(ActionExecutorEvent event)
Description copied from interface:ActionExecutorListenerWhen action has started.- Specified by:
actionStartin interfaceActionExecutorListener- Parameters:
event- the action executor event- See Also:
ActionExecutor.onActionStart(ActionWorker)
-
actionFail
public void actionFail(ActionExecutorEvent event)
Description copied from interface:ActionExecutorListenerWhen action has failed.- Specified by:
actionFailin interfaceActionExecutorListener- Parameters:
event- the action executor event- See Also:
ActionExecutor.onActionFail(ActionWorker)
-
actionCancel
public void actionCancel(ActionExecutorEvent event)
Description copied from interface:ActionExecutorListenerWhen action has cancel.- Specified by:
actionCancelin interfaceActionExecutorListener- Parameters:
event- the action executor event- See Also:
ActionExecutor.onActionCancel(ActionWorker)
-
actionEnd
public void actionEnd(ActionExecutorEvent event)
Description copied from interface:ActionExecutorListenerWhen action has end.- Specified by:
actionEndin interfaceActionExecutorListener- Parameters:
event- the action executor event- See Also:
ActionExecutor.onActionEnd(ActionWorker)
-
actionDone
public void actionDone(ActionExecutorEvent event)
Description copied from interface:ActionExecutorListenerWhen action has done.- Specified by:
actionDonein interfaceActionExecutorListener- Parameters:
event- the action executor event- See Also:
ActionExecutor.onAfterAction(ActionWorker)
-
-