org.pietschy.command
Interface CommandListener

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

Deprecated. use ActionCommandInterceptor instead.

public interface CommandListener
extends java.util.EventListener

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


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

Method Detail

beforeExecute

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

Parameters:
e - the command event.

afterExecute

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

Parameters:
e - the command event.