History for NextIterator

changed:
-
description

   This part does the iteration process. It gets the starting point of iteration in the "FROM" inpin, the 
ending point of iteration in the "TO" inpin, the next step of the iteration in the "NEXT" inpin,
the step of the iteration in the "BY" inpin, start of the iteration in the "START" inpin and starts 
firing every iteration in the "OUT" outpin.When the iteration process ends the "END" outpin fires.When firing the "NEXT" pin it checks did the "START" pin fired.If yes then the next iteration firs in the "OUT" pin.

Figure

 <img src="NIT.gif" />



inpins

 1 FROM - ID = 1   - double

  o Starting point of iteration
  
 2 TO - ID=2       -double

  o Ending point of iteration
 
 3 NEXT -ID=3     -no param

  o By firing next inpin the next iteration happens

 4 BY  -ID=4       -double

  o This is the size of the step of the iteration

 5 START  -ID=5     -no param

  o By firing this inpin the iteration starts

outpins

 1 OUT  -ID=51      -double

  o fires the result of the iteration

 2 END   -ID=52     -no param

  o fires when the iteration finishes
  
links to cvs

 source - revision 1.0 "org.vcb.parts.util.NextIterator.java":http://cvs.sourceforge.net/viewcvs.py/vcb/VCB/libraries/src/org/vcb/parts/util/NextIterator.java at sourceforge.net

 configuration file revision 1.0 "NextIterator.xml":http://cvs.sourceforge.net/viewcvs.py/vcb/VCB/libraries/configs/util/Nextiterator.xml at sourceforge.net

status

 alpha release