src/java/isac/wsdialog/IUserAction.java
branchjava_rename_format
changeset 3922 fcd5648113ca
equal deleted inserted replaced
963:b4896ce4d1b0 3922:fcd5648113ca
       
     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 }