|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.xml.parser.v2.NodeFactory
This class specifies methods to create various nodes of the DOM tree built during parsing. Applications can override these methods to create their own custom classes to be added to the DOM tree while parsing. Applications have to register their own NodeFactory using the DOMParser's setNodeFactory() method. If a null pointer is returned by these methods, then the node will not be added to the DOM tree.
DOMParser.setNodeFactory(oracle.xml.parser.v2.NodeFactory)
, Serialized FormConstructor Summary | |
NodeFactory() Default constructor for NodeFactory |
|
protected |
NodeFactory(XMLDocument doc) Constructor for NodeFactory to setup Document context |
Method Summary | |
XMLAttr |
createAttribute(java.lang.String tag, java.lang.String text) Creates an attribute node with the specified tag, and text. |
XMLAttr |
createAttributeNS(java.lang.String localName, java.lang.String prefix, java.lang.String namespaceURI, java.lang.String value) Creates an attribute node with the specified tag, and text. |
XMLCDATA |
createCDATASection(java.lang.String text) Creates a CDATA node with the specified text. |
XMLComment |
createComment(java.lang.String text) Creates a comment node with the specified text. |
XMLDocument |
createDocument() Creates a document node. |
XMLDocumentFragment |
createDocumentFragment() Creates a document fragment node. |
XMLElement |
createElement(java.lang.String tag) Creates an Element node with the specified tag. |
XMLElement |
createElementNS(java.lang.String localName, java.lang.String prefix, java.lang.String namespaceURI) Creates an Element node with the specified local name,prefix , namespaceURI. |
XMLEntityReference |
createEntityReference(java.lang.String tag) Creates an entity reference node with the specified tag. |
XMLPI |
createProcessingInstruction(java.lang.String tag, java.lang.String text) Creates a PI node with the specified tag, and text. |
XMLText |
createTextNode(java.lang.String text) Creates a text node with the specified text. |
boolean |
isNamespaceAware() Check if the NodeFactory is namespace aware If TRUE, createElementNS(localName, prefix, namespaceURI) and createAttributeNS(localName, prefix, namespaceURI, value) functions will be used to create Element and Attr nodes. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public NodeFactory()
protected NodeFactory(XMLDocument doc)
doc
- - Document used to create node, if the function is not present in the subclass.Method Detail |
public boolean isNamespaceAware()
public XMLDocument createDocument()
public XMLElement createElement(java.lang.String tag)
tag
- The name of the element.public XMLElement createElementNS(java.lang.String localName, java.lang.String prefix, java.lang.String namespaceURI)
localName
- the name of the elementprefix
- the prefix of the element,namespaceURI
- the namespace of the elementpublic XMLText createTextNode(java.lang.String text)
text
- The text associated with the node.public XMLCDATA createCDATASection(java.lang.String text)
text
- The text associated with the node.public XMLComment createComment(java.lang.String text)
text
- The text associated with the node.public XMLPI createProcessingInstruction(java.lang.String tag, java.lang.String text)
tag
- The name of the node.text
- The text associated with the node.public XMLAttr createAttribute(java.lang.String tag, java.lang.String text)
tag
- The name of the node.text
- The text associated with the node.public XMLAttr createAttributeNS(java.lang.String localName, java.lang.String prefix, java.lang.String namespaceURI, java.lang.String value)
localName
- the name of the node.prefix
- the prefix of the node.namespaceURI
- the namespace of the nodevalue
- The value associated with the node.public XMLDocumentFragment createDocumentFragment()
public XMLEntityReference createEntityReference(java.lang.String tag)
tag
- The name of the node.
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |