|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
com.lotus.xsl.ResultTreeFrag
The holder of result tree fragments.
Constructor Summary | |
ResultTreeFrag(com.lotus.xsl.Document docFactory)
|
Method Summary | |
com.lotus.xsl.Node |
appendChild(com.lotus.xsl.Node newChild)
Adds the node newChild to the end of the list of children of
this node. |
com.lotus.xsl.Node |
cloneNode(boolean deep)
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. |
com.lotus.xsl.NamedNodeMap |
getAttributes()
A NamedNodeMap containing the attributes of this node (if it
is an Element ) or null otherwise. |
com.lotus.xsl.NodeList |
getChildNodes()
A NodeList that contains all children of this node. |
com.lotus.xsl.Node |
getFirstChild()
The first child of this node. |
com.lotus.xsl.Node |
getLastChild()
The last child of this node. |
com.lotus.xsl.Node |
getNextSibling()
The node immediately following this node. |
java.lang.String |
getNodeName()
The name of this node, depending on its type; see the table above. |
short |
getNodeType()
A code representing the type of the underlying object, as defined above. |
java.lang.String |
getNodeValue()
The value of this node, depending on its type; see the table above. |
com.lotus.xsl.Document |
getOwnerDocument()
The Document object associated with this node. |
com.lotus.xsl.Node |
getParentNode()
The parent of this node. |
com.lotus.xsl.Node |
getPreviousSibling()
The node immediately preceding this node. |
boolean |
hasChildNodes()
This is a convenience method to allow easy determination of whether a node has any children. |
com.lotus.xsl.Node |
insertBefore(com.lotus.xsl.Node newChild,
com.lotus.xsl.Node refChild)
Inserts the node newChild before the existing child node
refChild . |
com.lotus.xsl.Node |
removeChild(com.lotus.xsl.Node oldChild)
Removes the child node indicated by oldChild from the list
of children, and returns it. |
com.lotus.xsl.Node |
replaceChild(com.lotus.xsl.Node newChild,
com.lotus.xsl.Node oldChild)
Replaces the child node oldChild with newChild
in the list of children, and returns the oldChild node. |
void |
setNodeValue(java.lang.String x)
DocumentFragments never have a nodeValue. |
Constructor Detail |
public ResultTreeFrag(com.lotus.xsl.Document docFactory)
Method Detail |
public final java.lang.String getNodeName()
public java.lang.String getNodeValue() throws com.lotus.xsl.DOMException
DOMString
variable on the implementation
platform.public void setNodeValue(java.lang.String x) throws com.lotus.xsl.DOMException
public final short getNodeType()
public com.lotus.xsl.Node getParentNode()
Document
,
DocumentFragment
, and Attr
may have a parent.
However, if a node has just been created and not yet added to the tree,
or if it has been removed from the tree, this is null
.public com.lotus.xsl.NodeList getChildNodes()
NodeList
that contains all children of this node. If there
are no children, this is a NodeList
containing no nodes.
The content of the returned NodeList
is "live" in the sense
that, for instance, changes to the children of the node object that
it was created from are immediately reflected in the nodes returned by
the NodeList
accessors; it is not a static snapshot of the
content of the node. This is true for every NodeList
,
including the ones returned by the getElementsByTagName
method.public com.lotus.xsl.Node getFirstChild()
null
.public com.lotus.xsl.Node getLastChild()
null
.public com.lotus.xsl.Node getPreviousSibling()
null
.public com.lotus.xsl.Node getNextSibling()
null
.public com.lotus.xsl.NamedNodeMap getAttributes()
NamedNodeMap
containing the attributes of this node (if it
is an Element
) or null
otherwise.public com.lotus.xsl.Document getOwnerDocument()
Document
object associated with this node. This is also
the Document
object used to create new nodes. When this
node is a Document
this is null
.public com.lotus.xsl.Node insertBefore(com.lotus.xsl.Node newChild, com.lotus.xsl.Node refChild) throws com.lotus.xsl.DOMException
newChild
before the existing child node
refChild
. If refChild
is null
,
insert newChild
at the end of the list of children.
newChild
is a DocumentFragment
object,
all of its children are inserted, in the same order, before
refChild
. If the newChild
is already in the
tree, it is first removed.newChild
- The node to insert.refChild
- The reference node, i.e., the node before which the new
node must be inserted.newChild
node, or if
the node to insert is one of this node's ancestors.
newChild
was created
from a different document than the one that created this node.
refChild
is not a child of
this node.public com.lotus.xsl.Node replaceChild(com.lotus.xsl.Node newChild, com.lotus.xsl.Node oldChild) throws com.lotus.xsl.DOMException
oldChild
with newChild
in the list of children, and returns the oldChild
node. If
the newChild
is already in the tree, it is first removed.newChild
- The new node to put in the child list.oldChild
- The node being replaced in the list.newChild
node, or it
the node to put in is one of this node's ancestors.
newChild
was created
from a different document than the one that created this node.
oldChild
is not a child of
this node.public com.lotus.xsl.Node removeChild(com.lotus.xsl.Node oldChild) throws com.lotus.xsl.DOMException
oldChild
from the list
of children, and returns it.oldChild
- The node being removed.oldChild
is not a child of
this node.public com.lotus.xsl.Node appendChild(com.lotus.xsl.Node newChild) throws com.lotus.xsl.DOMException
newChild
to the end of the list of children of
this node. If the newChild
is already in the tree, it is
first removed.newChild
- The node to add.If it is a DocumentFragment
object, the entire contents of the document fragment are moved into
the child list of this nodenewChild
node, or if
the node to append is one of this node's ancestors.
newChild
was created
from a different document than the one that created this node.
public boolean hasChildNodes()
true
if the node has any children,
false
if the node has no children.public com.lotus.xsl.Node cloneNode(boolean deep)
parentNode
returns null
.).
Element
copies all attributes and their
values, including those generated by the XML processor to represent
defaulted attributes, but this method does not copy any text it contains
unless it is a deep clone, since the text is contained in a child
Text
node. Cloning any other type of node simply returns a
copy of this node.deep
- If true
, recursively clone the subtree under the
specified node; if false
, clone only the node itself (and
its attributes, if it is an Element
).
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |