src/java/isac/wsdialog/UserActionOnIterator.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 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 }