01: /*
02: * Created on Dec 31, 2003
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.xssl.collection;
08:
09: import java.util.HashMap;
10:
11: import org.xdev.base.xssl.XSSLAction;
12:
13: /**
14: * @author AYegorov
15: *
16: * To change the template for this generated type comment go to
17: * Window>Preferences>Java>Code Generation>Code and Comments
18: */
19: public class CollectionIterator extends XSSLCollectionIterator {
20:
21: /**
22: * @param id
23: */
24: public CollectionIterator(String id) {
25: super (id);
26: // XXX Auto-generated constructor stub
27: }
28:
29: /**
30: * @param id
31: * @param properties
32: */
33: public CollectionIterator(String id, HashMap properties) {
34: super (id, properties);
35: // XXX Auto-generated constructor stub
36: }
37:
38: /* (non-Javadoc)
39: * @see org.xdev.base.xssl.collection.AbstractCollectionIterator#processCollectionItem(org.xdev.base.xssl.XSSLAction)
40: */
41: protected Object processCollectionItem(XSSLAction item, Object next)
42: throws Exception {
43:
44: this .logDebug("Next iterating item: " + next);
45:
46: item.execute();
47:
48: return item;
49: }
50:
51: }
|