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.returnthe map with the element name as a key, the setter method as a value Map table = super.getDispatchTable(); table.put(EjbTagNames.FIELD_NAME, "setName"); return table;
Map table = super.getDispatchTable(); table.put(EjbTagNames.FIELD_NAME, "setName"); return table;
write the descriptor class to a DOM tree and return itparamparent node in the DOM treeparamnode name for the root element of this xml fragmentparamthe descriptor to writereturnthe DOM tree top node Node cmpField = appendChild(parent, nodeName); writeLocalizedDescriptions(cmpField, descriptor); appendTextChild(cmpField, EjbTagNames.FIELD_NAME, descriptor.getName()); return cmpField;
Node cmpField = appendChild(parent, nodeName); writeLocalizedDescriptions(cmpField, descriptor); appendTextChild(cmpField, EjbTagNames.FIELD_NAME, descriptor.getName()); return cmpField;