src/java/isac/wsdialog/UserActionOnIterator.java
author akremp
Thu, 12 Feb 2004 19:06:59 +0100
changeset 1341 ebe0ac6b7743
child 1398 9455624eecfc
permissions -rw-r--r--
*** empty log message ***
     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
    10  * is part of the current calculation.
    11  * @see isac.wsdialog.events.UserActionOnCalcElement
    12  * @see isac.wsdialog.events.UserActionOnCalcHeadCompoundID
    13  * @author Alan Krempler
    14  */
    15 public class UserActionOnIterator extends UserAction {
    16 	private ICalcIterator iterator_;
    17 	
    18 	public UserActionOnIterator(int id, ICalcIterator iterator) {
    19 		super(id);
    20 		iterator_ = iterator; 
    21 	}
    22 	
    23 	public ICalcIterator getPosition() {
    24 		return iterator_;
    25 	}
    26 
    27 }