src/java/isac/wsdialog/UserActionOnIterator.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 isac.util.interfaces.ICalcIterator;
       
     7 
       
     8 /**
       
     9  * Describes an user action which relates to a CalcElement which is part of the
       
    10  * current calculation.
       
    11  * 
       
    12  * @see isac.wsdialog.UserActionOnCalcElement
       
    13  * @see isac.wsdialog.UserActionOnCalcHeadCompoundID
       
    14  * @author Alan Krempler
       
    15  */
       
    16 public class UserActionOnIterator extends UserAction {
       
    17     private ICalcIterator iterator_;
       
    18 
       
    19     public UserActionOnIterator(int id, ICalcIterator iterator) {
       
    20         super(id);
       
    21         iterator_ = iterator;
       
    22     }
       
    23 
       
    24     public ICalcIterator getPosition() {
       
    25         return iterator_;
       
    26     }
       
    27 
       
    28 }