com.ibm.ui.framework
Interface TaskActionListener

All Superinterfaces:
EventListener

public interface TaskActionListener
extends EventListener

The listener interface for receiving action events. The class that is interested in processing an action event implements this interface, and the object created with that class is registered with a WindowManager, using the addTaskActionListener method. When the data event occurs, that object's actionPerformed method is invoked.

A TaskActionListener is functionally equivalent to a java.awt.ActionListener, except that action events are delivered on a worker thread so as not to preempt the user interface.

Since:
v5r1m0
Version:
1.0 08/30/00
Author:
D. Petty
See Also:
TaskActionEvent

Method Summary
Modifier and Type Method and Description
 void actionPerformed(TaskActionEvent event)
          Invoked when a user has performed one of the actions defined on a task.
 

Method Detail

actionPerformed

void actionPerformed(TaskActionEvent event)
Invoked when a user has performed one of the actions defined on a task.

Parameters:
event - The action event.
Since:
v5r1m0