Serialized Form
Package javax.xml.parsers |
exception
java.lang.Exception exception
- The root cause of this
FactoryConfigurationError
.
Package org.apache.xerces.dom |
name
java.lang.String name
- Attribute name.
namespaceURI
java.lang.String namespaceURI
- DOM2: Namespace URI.
localName
java.lang.String localName
- DOM2: localName.
data
java.lang.String data
readObject
private void readObject(java.io.ObjectInputStream ois)
throws java.lang.ClassNotFoundException,
java.io.IOException
- Deserialize object.
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Serialize object.
ownerDocument
DocumentImpl ownerDocument
- Owner document.
firstChild
ChildNode firstChild
- First child.
changes
int changes
- Number of alterations made to this subtree since its creation.
Serves as a "dirty bit" so NodeList can recognize when an
alteration has been made and discard its cached state information.
Any method that alters the tree structure MUST cause or be
accompanied by a call to changed(), to inform it and its
parents that any outstanding NodeLists may have to be updated.
(Required because NodeList is simultaneously "live" and integer-
indexed -- a bad decision in the DOM's design.)
Note that changes which do not affect the tree's structure -- changing
the node's name, for example -- do _not_ have to call changed().
Alternative implementation would be to use a cryptographic
Digest value rather than a count. This would have the advantage that
"harmless" changes (those producing equal() trees) would not force
NodeList to resynchronize. Disadvantage is that it's slightly more prone
to "false negatives", though that's the difference between "wildly
unlikely" and "absurdly unlikely". IF we start maintaining digests,
we should consider taking advantage of them.
previousSibling
ChildNode previousSibling
- Previous sibling.
nextSibling
ChildNode nextSibling
- Next sibling.
docType
DocumentTypeImpl docType
- Document type.
docElement
ElementImpl docElement
- Document element.
identifiers
java.util.Hashtable identifiers
- Identifiers.
iterators
java.util.Vector iterators
- Iterators
ranges
java.util.Vector ranges
- Ranges
userData
java.util.Hashtable userData
- Table for quick check of child insertion.
allowGrammarAccess
boolean allowGrammarAccess
- Allow grammar access.
errorChecking
boolean errorChecking
- Bypass error checking.
name
java.lang.String name
- Document type name.
entities
NamedNodeMapImpl entities
- Entities.
notations
NamedNodeMapImpl notations
- Notations.
elements
NamedNodeMapImpl elements
- Elements.
publicID
java.lang.String publicID
systemID
java.lang.String systemID
internalSubset
java.lang.String internalSubset
name
java.lang.String name
- Element definition name.
attributes
NamedNodeMapImpl attributes
- Default attributes.
name
java.lang.String name
- Element name.
attributes
AttributeMap attributes
- Attributes.
namespaceURI
java.lang.String namespaceURI
- DOM2: Namespace URI.
localName
java.lang.String localName
- DOM2: localName.
name
java.lang.String name
- Entity name.
publicId
java.lang.String publicId
- Public identifier.
systemId
java.lang.String systemId
- System identifier.
notationName
java.lang.String notationName
- Notation name.
name
java.lang.String name
- Name of Entity referenced
flags
short flags
nodes
java.util.Vector nodes
- Nodes.
ownerNode
NodeImpl ownerNode
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Serialize object.
ownerNode
NodeImpl ownerNode
flags
short flags
nodeListeners
java.util.Vector nodeListeners
- NON-DOM INTERNAL: EventListeners currently registered at
THIS NODE; preferably null if none.
name
java.lang.String name
- Notation name.
publicId
java.lang.String publicId
- Public identifier.
systemId
java.lang.String systemId
- System identifier.
readObject
private void readObject(java.io.ObjectInputStream ois)
throws java.lang.ClassNotFoundException,
java.io.IOException
- Deserialize object.
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Serialize object.
ownerDocument
DocumentImpl ownerDocument
- Owner document.
firstChild
ChildNode firstChild
- First child.
changes
int changes
- Number of alterations made to this subtree since its creation.
Serves as a "dirty bit" so NodeList can recognize when an
alteration has been made and discard its cached state information.
Any method that alters the tree structure MUST cause or be
accompanied by a call to changed(), to inform it and its
parents that any outstanding NodeLists may have to be updated.
(Required because NodeList is simultaneously "live" and integer-
indexed -- a bad decision in the DOM's design.)
Note that changes which do not affect the tree's structure -- changing
the node's name, for example -- do _not_ have to call changed().
Alternative implementation would be to use a cryptographic
Digest value rather than a count. This would have the advantage that
"harmless" changes (those producing equal() trees) would not force
NodeList to resynchronize. Disadvantage is that it's slightly more prone
to "false negatives", though that's the difference between "wildly
unlikely" and "absurdly unlikely". IF we start maintaining digests,
we should consider taking advantage of them.
target
java.lang.String target
code
short code
Package org.w3c.dom.events |
code
short code
Package org.w3c.dom.range |
code
short code
exception
java.lang.Exception exception
- The embedded exception if tunnelling, or null.
publicId
java.lang.String publicId
- The public identifier, or null.
- See Also:
SAXParseException.getPublicId()
systemId
java.lang.String systemId
- The system identifier, or null.
- See Also:
SAXParseException.getSystemId()
lineNumber
int lineNumber
- The line number, or -1.
- See Also:
SAXParseException.getLineNumber()
columnNumber
int columnNumber
- The column number, or -1.
- See Also:
SAXParseException.getColumnNumber()