ConfigurableNodepublic class ConfigurableNode extends DeploymentDescriptorNode ConfigurableNode able to treat dispatch element values to descriptors based
on initialized values |
Fields Summary |
---|
private Map | dispatchTable | private Object | descriptor |
Constructors Summary |
---|
public ConfigurableNode(Object instance, Map dispatchTable)
super();
this.dispatchTable = dispatchTable;
this.descriptor = instance;
| public ConfigurableNode(Object descriptor, Map dispatchTable, XMLElement element)
super();
this.dispatchTable = dispatchTable;
this.descriptor = descriptor;
super.setXMLRootTag(element);
|
Methods Summary |
---|
public java.lang.Object | getDescriptor()
return descriptor;
| protected java.util.Map | getDispatchTable()all sub-implementation of this class can use a dispatch table to map xml element to
method name on the descriptor class for setting the element value.
return dispatchTable;
|
|