com.jbbres.lib.actions.elements
Interface ActionExecutionListener

All Superinterfaces:
java.util.EventListener

public interface ActionExecutionListener
extends java.util.EventListener

The listener interface for receiving ActionService execution related events. The class that is interested in processing an ActionService event implements this interface, and the object created with that class is registered with the ActionService, using the ActionService.addExecutionListener(ActionExecutionListener) method. When an ActionService execution event occurs, that object's corresponding method is invoked.

Since:
1.0.0
Version:
1.0.0
Author:
Jean-Baptiste Bres
See Also:
ActionService.addExecutionListener(ActionExecutionListener)

Method Summary
 void actionExecutionEnded(ActionExecutionEvent e)
          Invoked when an action execution ends.
 void actionExecutionStarted(ActionExecutionEvent e)
          Invoked when the action execution begins.
 

Method Detail

actionExecutionStarted

void actionExecutionStarted(ActionExecutionEvent e)
                            throws ActionExecutionException
Invoked when the action execution begins.

Parameters:
e - - the event
Throws:
ActionExecutionException - - if an execution occurs

actionExecutionEnded

void actionExecutionEnded(ActionExecutionEvent e)
                          throws ActionExecutionException
Invoked when an action execution ends.

Parameters:
e - - the event
Throws:
ActionExecutionException - - if an execution occurs


To file bugs or suggest feature enhancements, visit the app.jbbres.com Bug Reporter website.

Additional documentation available online at http://app.jbbres.com/actions/developers.

Copyright � 2009-2011 app.jbbres.com. All Rights Reserved.