org.w3c.dom.Node |
Entry.adoptNode(org.w3c.dom.Node source) |
This method adopts the provided as parameter Node by setting its parent
to null and setting the document reference to this entry object.
|
Attribute |
Entry.appendChild(org.w3c.dom.Node newChild) |
This will add the provided Attribute in the entry using the localName of
that Attribute for a key name.
|
org.w3c.dom.Node |
NodeImpl.appendChild(org.w3c.dom.Node newChild) |
This private variable holds a reference to the document of this element.
|
org.w3c.dom.Node |
Property.appendChild(org.w3c.dom.Node arg0) |
Not applicable for properties.
|
short |
DocImpl.compareDocumentPosition(org.w3c.dom.Node other) |
not implemented
|
short |
NodeImpl.compareDocumentPosition(org.w3c.dom.Node other) |
Does nothing!
|
short |
Property.compareDocumentPosition(org.w3c.dom.Node arg0) |
Not applicable for properties Does nothing.
|
Property |
Entry.createAttribute(java.lang.String name) |
This method creates a new Property object that represents an element's
attribute in terms of DOM concepts.
|
Property |
Entry.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName) |
This method creates new Property object that represents an element's
attribute in terms of XML concepts.
|
org.w3c.dom.CDATASection |
Entry.createCDATASection(java.lang.String data) |
Creates new AttributeCDATA object that represents a CDATASection in terms
of XML concepts.
|
Attribute |
Entry.createElement(java.lang.String tagName) |
This method creates new Attribute object that represents an element in
terms of XML concepts.
|
Attribute |
Entry.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName) |
This method creates new Attribute object that represents an element in
terms of XML concepts.
|
org.w3c.dom.EntityReference |
DocImpl.createEntityReference(java.lang.String name) |
not implemented
|
org.w3c.dom.ProcessingInstruction |
DocImpl.createProcessingInstruction(java.lang.String target,
java.lang.String data) |
not implemented
|
Property |
PropertyMap.getNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName) |
Looks up a Property using the specified namespace URI and localName.
|
java.lang.String |
DocImpl.getNodeValue() |
not implemented
|
java.lang.String |
Property.getNodeValue() |
|
java.lang.String |
DocImpl.getTextContent() |
not implemented
|
java.lang.String |
NodeImpl.getTextContent() |
|
boolean |
Attribute.hasAttributeNS(java.lang.String namespaceURI,
java.lang.String localName) |
Checks to see if a property with the specified localName and Attribute
exists.
|
org.w3c.dom.Node |
DocImpl.importNode(org.w3c.dom.Node importedNode,
boolean deep) |
not supported
|
Attribute |
Entry.insertBefore(org.w3c.dom.Node newChild,
org.w3c.dom.Node refChild) |
If the refChild is not presented in the entry structure or
is null then the newChild will be appended to the end.
|
org.w3c.dom.Node |
NodeImpl.insertBefore(org.w3c.dom.Node newChild,
org.w3c.dom.Node refChild) |
|
Attribute |
Entry.removeChild(org.w3c.dom.Node oldChild) |
This method will remove the provided Attribute from the Entry.
|
org.w3c.dom.Node |
NodeImpl.removeChild(org.w3c.dom.Node oldChild) |
|
Property |
PropertyMap.removeNamedItem(java.lang.String name) |
Removes the Property referenced by the given qualified name
|
Property |
PropertyMap.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName) |
Removes the Property referenced by the given namespace URI and localName
|
org.w3c.dom.Node |
Entry.renameNode(org.w3c.dom.Node n,
java.lang.String namespaceURI,
java.lang.String qualifiedName) |
Renames the node.
|
Attribute |
Entry.replaceChild(org.w3c.dom.Node newChild,
org.w3c.dom.Node oldChild) |
This method will search the entry structure for the oldChild and will
replace it with the newChild.
|
Property |
PropertyMap.setNamedItem(org.w3c.dom.Node property) |
Adds a Property using its nodeName attribute.
|
Property |
PropertyMap.setNamedItemNS(org.w3c.dom.Node property) |
Adds a node using its namespaceURI and localName.
|
void |
DocImpl.setNodeValue(java.lang.String nodeValue) |
not implemented
|
void |
Property.setNodeValue(java.lang.String aValue) |
|
void |
Attribute.setPrefix(java.lang.String prefix) |
|
void |
DocImpl.setPrefix(java.lang.String prefix) |
not implemented
|
void |
Property.setPrefix(java.lang.String prefix) |
This method sets the given prefix to the Property.
|
void |
DocImpl.setTextContent(java.lang.String textContent) |
not implemented
|
void |
Property.setValue(java.lang.String value) |
Sets the value of the Property.
|
void |
DocImpl.setXmlStandalone(boolean xmlStandalone) |
Does not change anything.
|
void |
DocImpl.setXmlVersion(java.lang.String xmlVersion) |
Does nothing.
|