src/java/isac/wsdialog/IUserAction.java
branchjava_rename_format
changeset 3922 fcd5648113ca
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/java/isac/wsdialog/IUserAction.java	Wed Jun 15 18:31:02 2005 +0200
     1.3 @@ -0,0 +1,23 @@
     1.4 +/*
     1.5 + * Created on Dec 12, 2003
     1.6 + */
     1.7 +package isac.wsdialog;
     1.8 +
     1.9 +import java.io.Serializable;
    1.10 +
    1.11 +import isac.wsdialog.IUIElement;
    1.12 +
    1.13 +/**
    1.14 + * Interface common to notifications about user interaction
    1.15 + * 
    1.16 + * @author Alan Krempler
    1.17 + */
    1.18 +public interface IUserAction extends IUIElement, Serializable {
    1.19 +
    1.20 +    /**
    1.21 +     * @return An integer value describing the action the user requested on the
    1.22 +     *         GUI
    1.23 +     */
    1.24 +    int getActionID();
    1.25 +
    1.26 +}
    1.27 \ No newline at end of file