net.sf.saxon.dom.TextOverAttrInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Saxon-HE Show documentation
Show all versions of Saxon-HE Show documentation
The XSLT and XQuery Processor
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2018-2022 Saxonica Limited
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.dom;
import net.sf.saxon.type.Type;
import org.w3c.dom.Node;
/**
* This class represents a DOM text node that is the child of a DOM attribute node. The DOM attribute node
* will be a wrapper over a Saxon attribute node or namespace node.
*/
public class TextOverAttrInfo extends TextOverNodeInfo {
private final AttrOverNodeInfo attr;
public TextOverAttrInfo(AttrOverNodeInfo attr) {
this.attr = attr;
this.node = attr.getUnderlyingNodeInfo();
}
/**
* Returns whether this text node contains
* element content whitespace, often abusively called "ignorable whitespace". The text node is
* determined to contain whitespace in element content during the load
* of the document or if validation occurs while using
* Document.normalizeDocument()
.
*
* @since DOM Level 3
*/
@Override
public boolean isElementContentWhitespace() {
return false;
}
/**
* Get the type of this node (node kind, in XPath terminology).
* Note, the numbers assigned to node kinds
* in Saxon (see {@link net.sf.saxon.type.Type}) are the same as those assigned in the DOM
*/
@Override
public short getNodeType() {
return Type.TEXT;
}
/**
* Compare the position of the (other) node in document order with the reference node (this node).
* DOM Level 3 method.
*
* @param other the other node.
* @return Returns how the node is positioned relatively to the reference node.
*/
@Override
public short compareDocumentPosition(Node other) {
final short DOCUMENT_POSITION_FOLLOWING = 0x04;
if (other instanceof TextOverAttrInfo) {
if (node.equals(((TextOverAttrInfo) other).node)) {
return 0;
} else {
return attr.compareDocumentPosition(((TextOverAttrInfo) other).attr);
}
} else if (other instanceof AttrOverNodeInfo) {
if (node.equals(((AttrOverNodeInfo) other).getUnderlyingNodeInfo())) {
return DOCUMENT_POSITION_FOLLOWING;
}
}
return attr.compareDocumentPosition(other);
}
/**
* Find the parent node of this node.
*
* @return The Node object describing the containing element or root node.
*/
@Override
public Node getParentNode() {
return attr;
}
}