Hi,
I have some java iteration code which I wish to convert into flowscript. I have imported the Iterator:

importClass(Packages.java.util.Iterator);

and the java code I want to convert is:


Iterator i = OrderItems.iterator();
while (i.hasNext()) {
OrderItem item = (OrderItem) i.next();
}

Any help will be most appreciated.

Peter

Reply via email to