|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
newChild
to the end of the list of children
of this node.
Attr
interface represents an attribute in an
Element
object. CharacterData
interface extends Node with a set of
attributes and methods for accessing character data in the DOM. CharacterData
and represents the
content of a comment, i.e., all the characters between the starting '
<!- COMMENT_NODE -
Static variable in interface org.w3c.dom.Node
-
- comps -
Variable in class de.pannenleiter.tbug.plain.TextCollection
-
- CONTENT_ANY -
Static variable in class helma.xmlrpc.applet.XmlParser
- Constant: the element has a content model of ANY.
- CONTENT_ELEMENTS -
Static variable in class helma.xmlrpc.applet.XmlParser
- Constant: the element has element content.
- CONTENT_EMPTY -
Static variable in class helma.xmlrpc.applet.XmlParser
- Constant: the element has declared content of EMPTY.
- CONTENT_MIXED -
Static variable in class helma.xmlrpc.applet.XmlParser
- Constant: the element has mixed content.
- CONTENT_UNDECLARED -
Static variable in class helma.xmlrpc.applet.XmlParser
- Constant: an element has not been declared.
- create(Debugger, boolean) -
Static method in class de.pannenleiter.tbug.plain.DebugWindow
-
- createAttribute(String) -
Method in interface org.w3c.dom.Document
- Creates an
Attr
of the given name.
- createAttributeNS(String, String) -
Method in interface org.w3c.dom.Document
- Creates an attribute of the given qualified name and namespace URI.
- createCDATASection(String) -
Method in interface org.w3c.dom.Document
- Creates a
CDATASection
node whose value is the specified
string.
- createComment(String) -
Method in interface org.w3c.dom.Document
- Creates a
Comment
node given the specified string.
- createDocument(String, String, DocumentType) -
Method in interface org.w3c.dom.DOMImplementation
- Creates an XML
Document
object of the specified type with
its document element.
- createDocumentFragment() -
Method in interface org.w3c.dom.Document
- Creates an empty
DocumentFragment
object.
- createDocumentType(String, String, String) -
Method in interface org.w3c.dom.DOMImplementation
- Creates an empty
DocumentType
node.
- createElement(String) -
Method in interface org.w3c.dom.Document
- Creates an element of the type specified.
- createElementNS(String, String) -
Method in interface org.w3c.dom.Document
- Creates an element of the given qualified name and namespace URI.
- createEntityReference(String) -
Method in interface org.w3c.dom.Document
- Creates an
EntityReference
object.
- createProcessingInstruction(String, String) -
Method in interface org.w3c.dom.Document
- Creates a
ProcessingInstruction
node given the specified
name and data strings.
- createTextNode(String) -
Method in interface org.w3c.dom.Document
- Creates a
Text
node given the specified string.
- customEditorPropertyDescriptor() -
Method in class com.magelang.editors.ColorSelectorBeanInfo
- Gets the customEditor property descriptor.
Document
interface represents the entire HTML or XML
document. DocumentFragment
is a "lightweight" or "minimal"
Document
object. Document
has a doctype
attribute whose
value is either null
or a DocumentType
object.
DOMImplementation
interface provides a number of methods
for performing operations that are independent of any particular instance
of the document object model.Element
interface represents an element in an HTML or XML
document. EntityReference
objects may be inserted into the structure
model when an entity reference is in the source document, or when the user
wishes to insert an entity reference. Attr
node by local name and namespace URI.
NamedNodeMap
containing the attributes of this node (if
it is an Element
) or null
otherwise.
NodeList
that contains all children of this node.
DocumentType
)
associated with this document.
Element
whose ID
is given by
elementId
.
NodeList
of all descendant elements with a
given tag name, in the order in which they would be encountered in a
preorder traversal of the Element
tree.
NodeList
of all the Elements
with
a given tag name in the order in which they would be encountered in a
preorder traversal of the Document
tree.
NodeList
of all the Elements
with
a given local name and namespace URI in the order in which they would
be encountered in a preorder traversal of the Document
tree, starting from this node.
NodeList
of all the Elements
with
a given local name and namespace URI in the order in which they would
be encountered in a preorder traversal of the Document
tree.
NamedNodeMap
containing the general entities, both
external and internal, declared in the DTD.
DOMImplementation
object that handles this document.
data
and the substringData
method below.
DOCTYPE
keyword.
null
if it is
unspecified.
NamedNodeMap
containing the notations declared in the
DTD.
Document
object associated with this node.
Element
node this attribute is attached to or
null
if this attribute is not in use.
null
if it is
unspecified.
true
; otherwise, it is
false
.
true
when an attribute with a given name is
specified on this element or has a default value, false
otherwise.
true
when an attribute with a given local name
and namespace URI is specified on this element or has a default value,
false
otherwise.
newChild
before the existing child node
refChild
.
index
th item in the collection.
index
th item in the map.
NamedNodeMap
interface are used to
represent collections of nodes that can be accessed by name. Node
interface is the primary datatype for the entire
Document Object Model. NodeList
interface provides the abstraction of an ordered
collection of nodes, without defining or constraining how this collection
is implemented.
Text
nodes in the full depth of the sub-tree
underneath this Node
, including attribute nodes, into a
"normal" form where only markup (e.g., tags, comments, processing
instructions, CDATA sections, and entity references) separates
Text
nodes, i.e., there are neither adjacent
Text
nodes nor empty Text
nodes.
ProcessingInstruction
interface represents a "processing
instruction", used in XML as a way to keep processor-specific information
in the text of the document.oldChild
from the
list of children, and returns it.
oldChild
with
newChild
in the list of children, and returns the
oldChild
node.
nodeName
attribute.
namespaceURI
and
localName
.
offset
, keeping both in the tree as siblings.
Text
interface inherits from CharacterData
and represents the textual content (termed character data in XML) of an
Element
or Attr
.
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |