01: /*
02: * Created on Apr 7, 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.transform;
08:
09: import java.util.HashMap;
10:
11: import org.xdev.base.xssl.XSSLReturn;
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 DateTransform extends XSSLReturn {
20: private Object returnValue = null;
21:
22: /**
23: * @param id
24: */
25: public DateTransform(String id) {
26: super (id);
27: // XXX Auto-generated constructor stub
28: }
29:
30: /**
31: * @param id
32: * @param properties
33: */
34: public DateTransform(String id, HashMap properties) {
35: super (id, properties);
36: // XXX Auto-generated constructor stub
37: }
38:
39: /* (non-Javadoc)
40: * @see org.xdev.base.xssl.XSSLReturn#getValue()
41: */
42: public Object getObjectValue() {
43: // XXX Auto-generated method stub
44: return null;
45: }
46:
47: /* (non-Javadoc)
48: * @see org.xdev.base.xssl.XSSLAction#set()
49: */
50: protected void set() throws Exception {
51: }
52:
53: }
|