|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface MutableNodeInfo
An extension of the NodeInfo interface defining a node that can be updated. The updating methods are closely modelled on the updating primitives defined in the XQuery Update specification, however, their semantics should not be assumed to be identical to those primitives.
These primitives may leave the tree in a state where the type annotations of nodes do not correctly describe the structure of the nodes. It is the caller's responsibility to maintain the integrity of type annotations.
This interface was introduced in Saxon 9.1 and modified in Saxon 9.2. It is not yet considered 100% stable. Some aspects of the semantics are not clearly defined, for example the effect of each operations on namespace bindings, and such details may change in the future. The primary purpose of this interface is as an internal interface for use by XQuery Update; applications use it (or implement it) at their own risk.
Field Summary |
---|
Fields inherited from interface net.sf.saxon.om.NodeInfo |
---|
ALL_NAMESPACES, EMPTY_NAMESPACE_LIST, IS_DTD_TYPE, IS_NILLED, LOCAL_NAMESPACES, NO_NAMESPACES |
Fields inherited from interface net.sf.saxon.om.ValueRepresentation |
---|
EMPTY_VALUE_ARRAY |
Method Summary | |
---|---|
void |
addAttribute(int nameCode,
int typeCode,
CharSequence value,
int properties)
Add an attribute to this element node. |
void |
addNamespace(int nscode,
boolean inherit)
Add a namespace binding (that is, a namespace node) to this element. |
void |
delete()
Delete this node (that is, detach it from its parent). |
void |
insertChildren(NodeInfo[] source,
boolean atStart,
boolean inherit)
Insert copies of a sequence of nodes as children of this node. |
void |
insertSiblings(NodeInfo[] source,
boolean before,
boolean inherit)
Insert copies of a sequence of nodes as siblings of this node. |
boolean |
isDeleted()
Test whether this MutableNodeInfo object represents a node that has been deleted. |
Builder |
newBuilder()
Get a Builder suitable for building nodes that can be attached to this document. |
void |
removeAttribute(NodeInfo attribute)
Remove an attribute from this element node |
void |
removeTypeAnnotation()
Remove type information from this node (and its ancestors, recursively). |
void |
rename(int newNameCode)
Rename this node. |
void |
replace(NodeInfo[] replacement,
boolean inherit)
Replace this node with a given sequence of nodes. |
void |
replaceStringValue(CharSequence stringValue)
Replace the string-value of this node. |
void |
setTypeAnnotation(int typeCode)
Set the type annotation on a node. |
Methods inherited from interface net.sf.saxon.om.NodeInfo |
---|
atomize, compareOrder, copy, equals, generateId, getAttributeValue, getBaseURI, getColumnNumber, getConfiguration, getDeclaredNamespaces, getDisplayName, getDocumentNumber, getDocumentRoot, getFingerprint, getLineNumber, getLocalPart, getNameCode, getNamePool, getNodeKind, getParent, getPrefix, getRoot, getStringValue, getSystemId, getTypeAnnotation, getURI, hasChildNodes, hashCode, isId, isIdref, isNilled, isSameNodeInfo, iterateAxis, iterateAxis |
Methods inherited from interface javax.xml.transform.Source |
---|
setSystemId |
Methods inherited from interface net.sf.saxon.om.Item |
---|
getStringValueCS, getTypedValue |
Method Detail |
---|
void setTypeAnnotation(int typeCode)
typeCode
- the type annotation (possibly including high bits set to indicate the isID, isIDREF, and
isNilled properties)void insertChildren(NodeInfo[] source, boolean atStart, boolean inherit)
This method takes no action unless the target node is a document node or element node. It also takes no action in respect of any supplied nodes that are not elements, text nodes, comments, or processing instructions.
The supplied nodes will be copied to form the new children. Adjacent text nodes will be merged, and zero-length text nodes removed.
source
- the nodes to be inserted. These objects are unchanged; the nodes inserted into the tree
will be copies.atStart
- true if the new nodes are to be inserted before existing children; false if they are
to be inserted after existing childreninherit
- true if the inserted nodes are to inherit the namespaces of their new parent; false
if such namespaces are to be undeclaredvoid insertSiblings(NodeInfo[] source, boolean before, boolean inherit)
This method takes no action unless the target node is an element, text node, comment, or processing instruction, and one that has a parent node. It also takes no action in respect of any supplied nodes that are not elements, text nodes, comments, or processing instructions.
The supplied nodes must use the same data model implementation as the tree into which they will be inserted.
source
- the nodes to be inserted. These objects are unchanged; the nodes inserted into the tree
will be copies.before
- true if the new nodes are to be inserted before the target node; false if they are
to be inserted after the target nodeinherit
- true if the inserted nodes are to inherit the namespaces of their new parent; false
if such namespaces are to be undeclaredvoid removeAttribute(NodeInfo attribute)
If the target node is not an element, or if the supplied node is not an attribute of this element, this method takes no action.
The attribute object itself becomes unusable; any attempt to use this attribute object,
or any other object representing the same node, is likely to result in an exception.
Calling the isDeleted()
method on the attribute object will return true.
attribute
- the attribute node to be removedvoid addAttribute(int nameCode, int typeCode, CharSequence value, int properties)
If this node is not an element, the method takes no action. If the element already has an attribute with this name, the method throws an exception.
This method does not perform any namespace fixup. It is the caller's responsibility to ensure that any namespace prefix used in the name of the attribute (or in its value if it has a namespace-sensitive type) is declared on this element.
nameCode
- the name of the new attributetypeCode
- the type annotation of the new attributevalue
- the string value of the new attributeproperties
- properties including IS_ID and IS_IDREF properties
IllegalStateException
- if the element already has an attribute with the given name.void delete()
Following this call, calling isDeleted()
on the target node or on any of its
descendants (or their attributes) will return true, and the node will in all other respects
be unusable. The effect of other operations on the node is undefined.
If the deleted node has preceding and following siblings that are both text nodes, the two text nodes will be joined into a single text node (the identity of this node with respect to the original text nodes is undefined).
boolean isDeleted()
void replace(NodeInfo[] replacement, boolean inherit)
replacement
- the replacement nodes. If this node is an attribute, the replacements
must also be attributes; if this node is not an attribute, the replacements must not be attributes.inherit
- true if the replacement nodes are to inherit the namespaces of their new parent; false
if such namespaces are to be undeclared
IllegalArgumentException
- if any of the replacement nodes is of the wrong kind. When replacing
a child node, the replacement nodes must all be elements, text, comment, or PI nodes; when replacing
an attribute, the replacement nodes must all be attributes.
IllegalStateException
- if this node is deleted or if it has no parent node.
IllegalStateException
- if two replacement attributes have the same name.void replaceStringValue(CharSequence stringValue)
stringValue
- the new string valuevoid rename(int newNameCode)
This call has no effect if applied to a nameless node, such as a text node or comment.
If necessary, a new namespace binding will be added to the target element, or to the element parent of the target attribute
newNameCode
- the namecode of the new name in the name pool
IllegalArgumentException
- if the new name code is not present in the name pool, or if
it has a (prefix, uri) pair in which the
prefix is the same as that of an existing in-scope namespace binding and the uri is different from that
namespace binding.void addNamespace(int nscode, boolean inherit)
nscode
- The namespace code representing the (prefix, uri) pair of the namespace binding to be
added. If the target element already has a namespace binding with this (prefix, uri) pair, the call has
no effect. If the target element currently has a namespace binding with this prefix and a different URI, an
exception is raised.inherit
- If true, the new namespace binding will be inherited by any children of the target element
that do not already have a namespace binding for the specified prefix, recursively.
If false, the new namespace binding will not be inherited.
IllegalArgumentException
- if the namespace code is not present in the namepool, or if the target
element already has a namespace binding for this prefixvoid removeTypeAnnotation()
Builder newBuilder()
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |