src/java/isac/wsdialog/IUserAction.java
author wneuper
Wed, 15 Jun 2005 18:31:02 +0200
branchjava_rename_format
changeset 3922 fcd5648113ca
permissions -rw-r--r--
java: isac.util.tactics .. end renamed, formatted, inst_var_, import cleaned
     1 /*
     2  * Created on Dec 12, 2003
     3  */
     4 package isac.wsdialog;
     5 
     6 import java.io.Serializable;
     7 
     8 import isac.wsdialog.IUIElement;
     9 
    10 /**
    11  * Interface common to notifications about user interaction
    12  * 
    13  * @author Alan Krempler
    14  */
    15 public interface IUserAction extends IUIElement, Serializable {
    16 
    17     /**
    18      * @return An integer value describing the action the user requested on the
    19      *         GUI
    20      */
    21     int getActionID();
    22 
    23 }