01: /*
02: * Created on Jan 5, 2004
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;
08:
09: import java.util.HashMap;
10:
11: /**
12: * @author AYegorov
13: *
14: * To change the template for this generated type comment go to
15: * Window>Preferences>Java>Code Generation>Code and Comments
16: */
17: public class XIterator extends XSSLActionIterator {
18:
19: /**
20: * @param id
21: */
22: public XIterator(String id) {
23: super (id);
24: // XXX Auto-generated constructor stub
25: }
26:
27: /**
28: * @param id
29: * @param properties
30: */
31: public XIterator(String id, HashMap properties) {
32: super (id, properties);
33: // XXX Auto-generated constructor stub
34: }
35:
36: /* (non-Javadoc)
37: * @see org.xdev.base.xssl.XSSLActionIterator#invoke(org.xdev.base.xssl.XSSLAction)
38: */
39: protected void invoke(XSSLAction component) throws Exception {
40: }
41:
42: /* (non-Javadoc)
43: * @see org.xdev.base.xssl.XSSLAction#set()
44: */
45: protected void set() throws Exception {
46: }
47:
48: }
|