Class AbsoluteOrderingNode
- java.lang.Object
-
- com.sun.enterprise.deployment.node.DeploymentDescriptorNode<AbsoluteOrderingDescriptor>
-
- org.glassfish.web.deployment.node.AbsoluteOrderingNode
-
- All Implemented Interfaces:
XMLNode<AbsoluteOrderingDescriptor>
public class AbsoluteOrderingNode extends DeploymentDescriptorNode<AbsoluteOrderingDescriptor>
This node is responsible for handling the absolute-ordering xml tree- Version:
- Author:
- Shing Wai Chan
-
-
Field Summary
Fields Modifier and Type Field Description protected AbsoluteOrderingDescriptordescriptorstatic XMLElementtag-
Fields inherited from class com.sun.enterprise.deployment.node.DeploymentDescriptorNode
abstractDescriptor, handlers, localStrings, parentNode, rootNode, serviceLocator
-
-
Constructor Summary
Constructors Constructor Description AbsoluteOrderingNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbsoluteOrderingDescriptorgetDescriptor()protected Map<String,String>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.voidstartElement(XMLElement element, Attributes attributes)SAX Parser API implementation, we don't really care for now.NodewriteDescriptor(Node parent, String nodeName, AbsoluteOrderingDescriptor descriptor)write the descriptor class to a DOM tree and return it-
Methods inherited from class com.sun.enterprise.deployment.node.DeploymentDescriptorNode
addDescriptor, addNamespaceDeclaration, addNodeDescriptor, addPrefixMapping, appendChild, appendQNameChild, appendTextChild, appendTextChild, composeQNameValue, createDescriptor, endElement, forceAppendTextChild, getHandlerFor, getLocalPartFromQName, getOwnerDocument, getParentNode, getPrefixFromQName, getRootNode, getXMLPath, getXMLRootTag, handlesElement, postParsing, registerElementHandler, registerElementHandler, resolvePrefix, setAttribute, setAttributeNS, setAttributeValue, setDescriptorInfo, setElementValue, setParentNode, setXMLRootTag, writeDescriptor, writeDescriptors, writeEjbReferenceDescriptors, writeEntityManagerFactoryReferenceDescriptors, writeEntityManagerReferenceDescriptors, writeEnvEntryDescriptors, writeJNDIEnvironmentRefs, writeLifeCycleCallbackDescriptors, writeLocalizedDescriptions, writeMessageDestinationRefDescriptors, writeResourceDescriptors, writeResourceEnvRefDescriptors, writeResourceRefDescriptors, writeServiceReferenceDescriptors, writeSimpleTextDescriptor, writeSubDescriptors
-
-
-
-
Field Detail
-
tag
public static final XMLElement tag
-
descriptor
protected AbsoluteOrderingDescriptor descriptor
-
-
Method Detail
-
getDescriptor
public AbsoluteOrderingDescriptor getDescriptor()
- Specified by:
getDescriptorin interfaceXMLNode<AbsoluteOrderingDescriptor>- Overrides:
getDescriptorin classDeploymentDescriptorNode<AbsoluteOrderingDescriptor>- Returns:
- the descriptor instance to associate with this XMLNode
-
getDispatchTable
protected Map<String,String> 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.- Overrides:
getDispatchTablein classDeploymentDescriptorNode<AbsoluteOrderingDescriptor>- Returns:
- the map with the element name as a key, the setter method as a value
-
startElement
public void startElement(XMLElement element, Attributes attributes)
SAX Parser API implementation, we don't really care for now.- Specified by:
startElementin interfaceXMLNode<AbsoluteOrderingDescriptor>- Overrides:
startElementin classDeploymentDescriptorNode<AbsoluteOrderingDescriptor>- Parameters:
element- the XML element type nameattributes- the specified or defaultted attritutes
-
writeDescriptor
public Node writeDescriptor(Node parent, String nodeName, AbsoluteOrderingDescriptor descriptor)
write the descriptor class to a DOM tree and return it- Overrides:
writeDescriptorin classDeploymentDescriptorNode<AbsoluteOrderingDescriptor>- Parameters:
parent- node in the DOM treenodeName- node name for the root element of this xml fragmentdescriptor- the descriptor to write- Returns:
- the DOM tree top node
-
-