src/java/isac/wsdialog/UserActionOnInt.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 /**
     7  * Describes an user action passing an integer value.
     8  * 
     9  * @see isac.wsdialog.UserActionOnIterator
    10  * @see isac.wsdialog.UserActionOnCalcHeadCompoundID
    11  * @author Alan Krempler
    12  */
    13 public class UserActionOnInt extends UserAction {
    14     private int i_;
    15 
    16     /**
    17      * @param id
    18      * @param i
    19      *            The integer value holding additional information to the
    20      *            UserAction
    21      */
    22     public UserActionOnInt(int id, int i) {
    23         super(id);
    24         i_ = i;
    25     }
    26 
    27     /**
    28      * @return The integer value holding additional information to the
    29      *         UserAction
    30      */
    31     public int getInt() {
    32         return i_;
    33     }
    34 
    35 }