01: /*
02: * Created on Feb 3, 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 XPointer extends XSSLPointer {
18: /**
19: * @param id
20: */
21: public XPointer(String id) {
22: super (id);
23: // XXX Auto-generated constructor stub
24: }
25:
26: /**
27: * @param id
28: * @param properties
29: */
30: public XPointer(String id, HashMap properties) {
31: super (id, properties);
32: // XXX Auto-generated constructor stub
33: }
34:
35: /* (non-Javadoc)
36: * @see org.xdev.base.xssl.XSSLPointer#processPointer(org.xdev.base.xssl.XSSLAction)
37: */
38: protected Object processPointer(XSSLAction pointer)
39: throws Exception {
40: return pointer;
41: }
42: }
|