View Javadoc
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 import java.util.EventListener; 11 12 /*** 13 * Listens to {@link ActionEvent}s. 14 * 15 * <!-- $Id: ActionListener.java,v 1.2 2002/10/07 19:49:19 tirsen Exp $ --> 16 * 17 * @author $Author: tirsen $ 18 * @version $Revision: 1.2 $ 19 * @see ActionEvent 20 * @see ActionSource 21 */ 22 public interface ActionListener extends EventListener 23 { 24 void actionPerformed(ActionEvent evt); 25 }

This page was automatically generated by Maven