1 /*
2 * Angkor Web Framework
3 *
4 * Distributable under LGPL license.
5 * See terms of license at gnu.org.
6 */
7
8 package com.tirsen.angkor.event;
9
10
11 /***
12 * Implemented by classes that are sources of the component-defined action event.
13 *
14 * <!-- $Id: ActionSource.java,v 1.3 2002/10/09 21:37:37 tirsen Exp $ -->
15 *
16 * @author $Author: tirsen $
17 * @version $Revision: 1.3 $
18 */
19 public interface ActionSource
20 {
21 Action getAction();
22
23 void setAction(Action action);
24
25 void addActionListener(ActionListener listener);
26
27 void removeActionListener(ActionListener listener);
28
29 void signalActionEvent();
30 }
This page was automatically generated by Maven