|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Node | |
com.japisoft.fastparser.dom | |
org.w3c.dom |
Uses of Node in com.japisoft.fastparser.dom |
Classes in com.japisoft.fastparser.dom that implement Node | |
class |
AttrImpl
Att |
class |
CharacterDataImpl
CharacterData |
class |
CommentImpl
Comment |
class |
DocumentFragmentImpl
DocumentFragment |
class |
DocumentImpl
Document |
class |
DocumentTypeImpl
DocumentType : Not implemented |
class |
ElementImpl
Element |
class |
EntityImpl
Entity |
class |
EntityReferenceImpl
EntityReference |
class |
NodeImpl
Node |
class |
NotationImpl
Notation |
class |
ProcessingInstructionImpl
ProcesingInstruction |
class |
TextImpl
Text |
Methods in com.japisoft.fastparser.dom that return Node | |
Node |
DocumentImpl.importNode(Node importedNode,
boolean deep)
|
Node |
NamedNodeMapImpl.getNamedItem(java.lang.String name)
Retrieves a node specified by name. |
Node |
NamedNodeMapImpl.setNamedItem(Node arg)
Adds a node using its nodeName attribute.
|
Node |
NamedNodeMapImpl.removeNamedItem(java.lang.String name)
Removes a node specified by name. |
Node |
NamedNodeMapImpl.item(int index)
Returns the index th item in the map. |
Node |
NamedNodeMapImpl.getNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
|
Node |
NamedNodeMapImpl.setNamedItemNS(Node arg)
|
Node |
NamedNodeMapImpl.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
|
Node |
NodeImpl.getParentNode()
The parent of this node. |
Node |
NodeImpl.getFirstChild()
The first child of this node. |
Node |
NodeImpl.getLastChild()
The last child of this node. |
Node |
NodeImpl.getPreviousSibling()
The node immediately preceding this node. |
Node |
NodeImpl.getNextSibling()
The node immediately following this node. |
Node |
NodeImpl.insertBefore(Node newChild,
Node refChild)
Inserts the node newChild before the existing child node
refChild . |
Node |
NodeImpl.replaceChild(Node newChild,
Node oldChild)
Replaces the child node oldChild with newChild
in the list of children, and returns the oldChild node. |
Node |
NodeImpl.removeChild(Node oldChild)
Removes the child node indicated by oldChild from the list
of children, and returns it. |
Node |
NodeImpl.appendChild(Node newChild)
Adds the node newChild to the end of the list of children of
this node. |
Node |
NodeImpl.cloneNode(boolean deep)
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. |
Node |
NodeListImpl.item(int index)
|
Methods in com.japisoft.fastparser.dom with parameters of type Node | |
Node |
DocumentImpl.importNode(Node importedNode,
boolean deep)
|
Node |
NamedNodeMapImpl.setNamedItem(Node arg)
Adds a node using its nodeName attribute.
|
Node |
NamedNodeMapImpl.setNamedItemNS(Node arg)
|
Node |
NodeImpl.insertBefore(Node newChild,
Node refChild)
Inserts the node newChild before the existing child node
refChild . |
Node |
NodeImpl.insertBefore(Node newChild,
Node refChild)
Inserts the node newChild before the existing child node
refChild . |
Node |
NodeImpl.replaceChild(Node newChild,
Node oldChild)
Replaces the child node oldChild with newChild
in the list of children, and returns the oldChild node. |
Node |
NodeImpl.replaceChild(Node newChild,
Node oldChild)
Replaces the child node oldChild with newChild
in the list of children, and returns the oldChild node. |
Node |
NodeImpl.removeChild(Node oldChild)
Removes the child node indicated by oldChild from the list
of children, and returns it. |
Node |
NodeImpl.appendChild(Node newChild)
Adds the node newChild to the end of the list of children of
this node. |
Uses of Node in org.w3c.dom |
Subinterfaces of Node in org.w3c.dom | |
interface |
Attr
The Attr interface represents an attribute in an
Element object.Typically the allowable values for the
attribute are defined in a documenttype definition.
|
interface |
CDATASection
CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. |
interface |
CharacterData
The CharacterData interface extends Node with a set of
attributes and methods for accessing character data in the DOM. |
interface |
Comment
This represents the content of a comment, i.e., all the characters between the starting ' <! |
interface |
Document
The Document interface represents the entire HTML or XML
document. |
interface |
DocumentFragment
DocumentFragment is a "lightweight" or "minimal"
Document object. |
interface |
DocumentType
Each Document has a doctype attribute whose value
is either null or a DocumentType object. |
interface |
Element
By far the vast majority of objects (apart from text) that authors encounter when traversing a document are Element nodes.
|
interface |
Entity
This interface represents an entity, either parsed or unparsed, in an XML document. |
interface |
EntityReference
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. |
interface |
Notation
This interface represents a notation declared in the DTD. |
interface |
ProcessingInstruction
The ProcessingInstruction interface represents a "processing
instruction", used in XML as a way to keep processor-specific information
in the text of the document. |
interface |
Text
The Text interface represents the textual content (termed
character data in XML) of an Element or Attr .
|
Methods in org.w3c.dom that return Node | |
Node |
NodeList.item(int index)
Returns the index th item in the collection. |
Node |
Node.getParentNode()
The parent of this node. |
Node |
Node.getFirstChild()
The first child of this node. |
Node |
Node.getLastChild()
The last child of this node. |
Node |
Node.getPreviousSibling()
The node immediately preceding this node. |
Node |
Node.getNextSibling()
The node immediately following this node. |
Node |
Node.insertBefore(Node newChild,
Node refChild)
Inserts the node newChild before the existing child node
refChild . |
Node |
Node.replaceChild(Node newChild,
Node oldChild)
Replaces the child node oldChild with newChild
in the list of children, and returns the oldChild node. |
Node |
Node.removeChild(Node oldChild)
Removes the child node indicated by oldChild from the list
of children, and returns it. |
Node |
Node.appendChild(Node newChild)
Adds the node newChild to the end of the list of children of
this node. |
Node |
Node.cloneNode(boolean deep)
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. |
Node |
NamedNodeMap.getNamedItem(java.lang.String name)
Retrieves a node specified by name. |
Node |
NamedNodeMap.setNamedItem(Node arg)
Adds a node using its nodeName attribute.
|
Node |
NamedNodeMap.removeNamedItem(java.lang.String name)
Removes a node specified by name. |
Node |
NamedNodeMap.item(int index)
Returns the index th item in the map. |
Methods in org.w3c.dom with parameters of type Node | |
Node |
Node.insertBefore(Node newChild,
Node refChild)
Inserts the node newChild before the existing child node
refChild . |
Node |
Node.insertBefore(Node newChild,
Node refChild)
Inserts the node newChild before the existing child node
refChild . |
Node |
Node.replaceChild(Node newChild,
Node oldChild)
Replaces the child node oldChild with newChild
in the list of children, and returns the oldChild node. |
Node |
Node.replaceChild(Node newChild,
Node oldChild)
Replaces the child node oldChild with newChild
in the list of children, and returns the oldChild node. |
Node |
Node.removeChild(Node oldChild)
Removes the child node indicated by oldChild from the list
of children, and returns it. |
Node |
Node.appendChild(Node newChild)
Adds the node newChild to the end of the list of children of
this node. |
Node |
NamedNodeMap.setNamedItem(Node arg)
Adds a node using its nodeName attribute.
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |