com.pietschy.command
Interface ActionCommandListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
ActionCommandAdapter

public interface ActionCommandListener
extends java.util.EventListener

The CommandListener interface provides notification of a commands execution. The listener is notified before and after the command has been invoked.


Method Summary
 void afterExecute(ActionCommandEvent e)
          Called just after a commands execution.
 void beforeExecute(ActionCommandEvent e)
          Called just prior to a commands execution.
 

Method Detail

beforeExecute

void beforeExecute(ActionCommandEvent e)
Called just prior to a commands execution.

Parameters:
e - the command event.

afterExecute

void afterExecute(ActionCommandEvent e)
Called just after a commands execution.

Parameters:
e - the command event.


Copyright © 2006 - 2007 Andrew Pietsch