Serialized Form
Package org.apache.html.dom |
_anchors
org.apache.html.dom.HTMLCollectionImpl _anchors
- Holds
HTMLCollectionImpl
object with live collection of all
anchors in document. This reference is on demand only once.
_applets
org.apache.html.dom.HTMLCollectionImpl _applets
- Holds
HTMLCollectionImpl
object with live collection of all
applets in document. This reference is on demand only once.
_forms
org.apache.html.dom.HTMLCollectionImpl _forms
- Holds
HTMLCollectionImpl
object with live collection of all
forms in document. This reference is on demand only once.
_images
org.apache.html.dom.HTMLCollectionImpl _images
- Holds
HTMLCollectionImpl
object with live collection of all
images in document. This reference is on demand only once.
_links
org.apache.html.dom.HTMLCollectionImpl _links
- Holds
HTMLCollectionImpl
object with live collection of all
links in document. This reference is on demand only once.
_writer
java.io.StringWriter _writer
- Holds string writer used by direct manipulation operation (
HTMLDocumentImpl.open()
.
HTMLDocumentImpl.write(java.lang.String)
, etc) to write new contents into the document and parse
that text into a document tree.
_elements
org.apache.html.dom.HTMLCollectionImpl _elements
- Collection of all elements contained in this FORM.
_areas
HTMLCollection _areas
_options
HTMLCollection _options
_bodies
org.apache.html.dom.HTMLCollectionImpl _bodies
_rows
org.apache.html.dom.HTMLCollectionImpl _rows
_cells
HTMLCollection _cells
_rows
org.apache.html.dom.HTMLCollectionImpl _rows
Package org.apache.xerces.dom |
owned
boolean owned
- Flag used for INUSE exception processing.
specified
boolean specified
- False for default attributes.
localName
java.lang.String localName
- DOM2: localName.
namespaceURI
java.lang.String namespaceURI
- DOM2: Namespace URI.
prefix
java.lang.String prefix
- DOM2: Prefix
fNamespacesEnabled
boolean fNamespacesEnabled
- DOM2: For namespace support in the deferred case.
allowGrammarAccess
boolean allowGrammarAccess
- Allow grammar access.
docElement
ElementImpl docElement
- Document element.
docType
DocumentTypeImpl docType
- Document type.
errorChecking
boolean errorChecking
- Bypass error checking.
identifiers
java.util.Hashtable identifiers
- Identifiers.
iterators
java.util.Vector iterators
- Iterators
ranges
java.util.Vector ranges
- Ranges
treeWalkers
java.util.Vector treeWalkers
- Tree walkers
elements
NamedNodeMapImpl elements
- Elements.
entities
NamedNodeMapImpl entities
- Entities.
internalSubset
java.lang.String internalSubset
notations
NamedNodeMapImpl notations
- Notations.
publicID
java.lang.String publicID
systemID
java.lang.String systemID
attributes
NamedNodeMapImpl attributes
- Default attributes.
attributes
NamedNodeMapImpl attributes
- Attributes.
localName
java.lang.String localName
- DOM2: localName.
namespaceURI
java.lang.String namespaceURI
- DOM2: Namespace URI.
prefix
java.lang.String prefix
- DOM2: Prefix
notationName
java.lang.String notationName
- Notation name.
publicId
java.lang.String publicId
- Public identifier.
systemId
java.lang.String systemId
- System identifier.
changes
int changes
- Changes.
defaults
NamedNodeMapImpl defaults
- Default nodes.
element
ElementImpl element
- Element. Only named node maps holding attributes for elements
have an element object. This value is here to support the
Attr#getElement method and MutationEvent processing
(DOM Level 2, 19 June 1999).
lastDefaultsChanges
int lastDefaultsChanges
- Last defaults changes.
nodes
java.util.Vector nodes
- Nodes.
ownerDocument
Document ownerDocument
- Owner document.
readOnly
boolean readOnly
- Read-only.
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.
firstChild
NodeImpl firstChild
- First child.
lastChild
NodeImpl lastChild
- Last child.
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Serialize object.
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.
fInternalSetNodeValue
boolean fInternalSetNodeValue
- flag to indicate whether setNodeValue was called by the
client or from the DOM.
name
java.lang.String name
- Node name.
nextSibling
NodeImpl nextSibling
- Next sibling.
nodeListeners
java.util.Vector nodeListeners
- NON-DOM INTERNAL: EventListeners currently registered at
THIS NODE; preferably null if none.
ownerDocument
DocumentImpl ownerDocument
- Owner document.
parentNode
NodeImpl parentNode
- Parent node.
previousSibling
NodeImpl previousSibling
- Previous sibling.
readOnly
boolean readOnly
- Read-only property.
userData
java.lang.Object userData
- NON-DOM FEATURE; see setUserData/getUserData.
value
java.lang.String value
- Node value.
publicId
java.lang.String publicId
- Public identifier.
systemId
java.lang.String systemId
- System identifier.
ignorableWhitespace
boolean ignorableWhitespace
- Ignorable whitespace.
Package org.apache.xerces.domx |
Package org.apache.xerces.validators.datatype |
Package org.apache.xerces.validators.dtd |
fErrorCode
int fErrorCode
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.
columnNumber
int columnNumber
- The column number, or -1.
- See Also:
SAXParseException.getColumnNumber()
lineNumber
int lineNumber
- The line number, or -1.
- See Also:
SAXParseException.getLineNumber()
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()
Copyright © 1999 Apache XML Project. All Rights Reserved.