01: /*
02: * Created on Sep 23, 2004
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package org.xdev.base.xssl.reflection;
08:
09: import java.util.HashMap;
10:
11: import org.xdev.base.xssl.XSSLReturn;
12:
13: /**
14: * @author Administrator
15: *
16: * TODO To change the template for this generated type comment go to
17: * Window - Preferences - Java - Code Style - Code Templates
18: */
19: public class RuntimeBind extends XSSLReturn {
20:
21: /**
22: * @param id
23: */
24: public RuntimeBind(String id) {
25: super (id);
26: // TODO Auto-generated constructor stub
27: }
28:
29: /**
30: * @param id
31: * @param properties
32: */
33: public RuntimeBind(String id, HashMap properties) {
34: super (id, properties);
35: // TODO Auto-generated constructor stub
36: }
37:
38: /* (non-Javadoc)
39: * @see org.xdev.base.xssl.XSSLAction#set()
40: */
41: protected void set() throws Exception {
42:
43: this .getRoot().addTemporaryBind(this .getReferenceId(),
44: this .getChildren());
45: }
46:
47: public Object getObjectValue() {
48:
49: return null;
50: }
51:
52: }
|