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.wml.dom |
Package org.apache.xerces.dom |
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.
name
java.lang.String name
- Attribute name.
value
java.lang.Object value
- This can either be a String or the first child node.
localName
java.lang.String localName
- DOM2: localName.
namespaceURI
java.lang.String namespaceURI
- DOM2: Namespace URI.
data
java.lang.String data
nextSibling
ChildNode nextSibling
- Next sibling.
previousSibling
ChildNode previousSibling
- Previous sibling.
allowGrammarAccess
boolean allowGrammarAccess
- Allow grammar access.
changes
int changes
- Number of alterations made to this document since its creation.
Serves as a "dirty bit" so that live objects such as 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 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.
Note: This used to be done a node basis, so that we knew what
subtree changed. But since only DeepNodeList really use this today,
the gain appears to be really small compared to the cost of having
an int on every (parent) node plus having to walk up the tree all the
way to the root to mark the branch as changed everytime a node is
changed.
So we now have a single counter global to the document. It means that
some objects may flush their cache more often than necessary, but this
makes nodes smaller and only the document needs to be marked as changed.
docElement
ElementImpl docElement
- Document element.
docType
DocumentTypeImpl docType
- Document type.
encoding
java.lang.String encoding
- Experimental DOM Level 3 feature: Document encoding
errorChecking
boolean errorChecking
- Bypass error checking.
identifiers
java.util.Hashtable identifiers
- Identifiers.
standalone
boolean standalone
- Experimental DOM Level 3 feature: Document standalone
version
java.lang.String version
- Experimental DOM Level 3 feature: Document version
fBufferStr
java.lang.StringBuffer fBufferStr
fNamespacesEnabled
boolean fNamespacesEnabled
- DOM2: For namespace support in the deferred case.
fStrChunks
java.util.Vector fStrChunks
eventListeners
java.util.Hashtable eventListeners
- Table for event listeners registered to this document nodes.
iterators
java.util.Vector iterators
- Iterators
mutationEvents
boolean mutationEvents
- Bypass mutation events firing.
ranges
java.util.Vector ranges
- Ranges
savedEnclosingAttr
org.apache.xerces.dom.DocumentImpl.EnclosingAttr savedEnclosingAttr
userData
java.util.Hashtable userData
- Table for user data attached to this document nodes.
elements
NamedNodeMapImpl elements
- Elements.
entities
NamedNodeMapImpl entities
- Entities.
internalSubset
java.lang.String internalSubset
name
java.lang.String name
- Document type name.
notations
NamedNodeMapImpl notations
- Notations.
publicID
java.lang.String publicID
systemID
java.lang.String systemID
attributes
NamedNodeMapImpl attributes
- Default attributes.
name
java.lang.String name
- Element definition name.
attributes
AttributeMap attributes
- Attributes.
name
java.lang.String name
- Element name.
localName
java.lang.String localName
- DOM2: localName.
namespaceURI
java.lang.String namespaceURI
- DOM2: Namespace URI.
encoding
java.lang.String encoding
- Encoding
name
java.lang.String name
- Entity name.
notationName
java.lang.String notationName
- Notation name.
publicId
java.lang.String publicId
- Public identifier.
systemId
java.lang.String systemId
- System identifier.
version
java.lang.String version
- Version
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.
flags
short flags
ownerNode
NodeImpl ownerNode
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.
firstChild
ChildNode firstChild
- First child.
ownerDocument
CoreDocumentImpl ownerDocument
- Owner document.
target
java.lang.String target
Package org.apache.xerces.utils |
m_fragment
java.lang.String m_fragment
- If specified, stores the fragment for this URI; otherwise null
m_host
java.lang.String m_host
- If specified, stores the host for this URI; otherwise null
m_path
java.lang.String m_path
- If specified, stores the path for this URI; otherwise null
m_port
int m_port
- If specified, stores the port for this URI; otherwise -1
m_queryString
java.lang.String m_queryString
- If specified, stores the query string for this URI; otherwise
null.
m_scheme
java.lang.String m_scheme
- Stores the scheme (usually the protocol) for this URI.
m_userinfo
java.lang.String m_userinfo
- If specified, stores the userinfo for this URI; otherwise null
Package org.apache.xerces.utils.regex |
location
int location
hasBackReferences
boolean hasBackReferences
nofparen
int nofparen
- The number of parenthesis in the regular expression.
-
options
int options
-
regex
java.lang.String regex
- A regular expression.
-
tokentree
org.apache.xerces.utils.regex.Token tokentree
- Internal representation of the regular expression.
-
Package org.apache.xerces.validators.common |
fErrorCode
int fErrorCode
Package org.apache.xerces.validators.datatype |
majorCode
int majorCode
minorCode
int minorCode
majorCode
int majorCode
minorCode
int minorCode
Package org.apache.xerces.validators.schema.identity |
code
short code
Package org.w3c.dom.events |
code
short code
Package org.w3c.dom.ranges |
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-2001 Apache XML Project. All Rights Reserved.