Searched defs:getNodeValue (Results 1 - 23 of 23) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DAttrImpl.java117 public String getNodeValue() { method in class:AttrImpl
H A DDefaultNode.java54 public String getNodeValue() throws DOMException { method in class:DefaultNode
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DIntervalTree.java71 protected Object getNodeValue(RBNode node) { method in class:IntervalTree
H A DRBTree.java234 protected Object getNodeValue(RBNode node) { method in class:RBTree
257 if (comparator.compare(getNodeValue(z), getNodeValue(x)) < 0) {
267 if (comparator.compare(getNodeValue(z), getNodeValue(y)) < 0) {
523 tty.println(" " + getNodeValue(node) +
603 System.err.println("(Removing value " + tree.getNodeValue(xParent) + ")");
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DCharacterDataImpl.java89 public String getNodeValue() { method in class:CharacterDataImpl
H A DAttrImpl.java276 * Implicit in the rerouting of getNodeValue to getValue is the
316 public String getNodeValue() { method in class:AttrImpl
462 data = firstChild.getNodeValue();
477 value.append(node.getNodeValue());
559 ((Text)kid).appendData(next.getNodeValue());
566 if ( kid.getNodeValue() == null || kid.getNodeValue().length() == 0 ) {
H A DDeferredDocumentImpl.java873 * directly from the data structures. Used by TextImpl#getNodeValue()
1224 public String getNodeValue(int nodeIndex) { method in class:DeferredDocumentImpl
1225 return getNodeValue(nodeIndex, true);
1258 public String getNodeValue(int nodeIndex, boolean free) { method in class:DeferredDocumentImpl
1269 } // getNodeValue(int,boolean):String
1497 System.out.print(getNodeValue(chunk, index));
2000 private final String getNodeValue(int chunk, int index) { method in class:DeferredDocumentImpl
H A DNodeImpl.java203 public String getNodeValue() method in class:NodeImpl
1302 return getNodeValue(); // overriden in some subclasses
1307 String content = getNodeValue();
1413 String value = attr.getNodeValue();
1541 String value = attr.getNodeValue();
1628 String value = attr.getNodeValue();
1742 if (getNodeValue() == null) {
1743 if (arg.getNodeValue() != null) {
1747 else if (!getNodeValue().equals(arg.getNodeValue())) {
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathNamespaceImpl.java103 * @see org.w3c.dom.Node#getNodeValue()
105 public String getNodeValue() throws DOMException { method in class:XPathNamespaceImpl
106 return m_attributeNode.getNodeValue();
241 return m_attributeNode.getNodeValue();
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java75 public String getNodeValue() {return uri;} method in class:DOM2DTMdefaultNamespaceDeclarationNode
280 if (getNodeValue() == null) {
281 if (arg.getNodeValue() != null) {
285 else if (!getNodeValue().equals(arg.getNodeValue())) {
334 String value = attr.getNodeValue();
422 String value = attr.getNodeValue();
638 return getNodeValue(); // overriden in some subclasses
H A DDOM2DTM.java502 XMLCharacterRecognizer.isWhiteSpace(n.getNodeValue());
851 buf.append(node.getNodeValue());
859 return m_xstrf.newstr( node.getNodeValue() );
885 buf.append(node.getNodeValue());
936 buf.append(node.getNodeValue());
1232 public String getNodeValue(int nodeHandle) method in class:DOM2DTM
1241 return getNode(nodeHandle).getNodeValue();
1253 return node.getNodeValue();
1256 buf.append(node.getNodeValue());
1259 buf.append(n.getNodeValue());
[all...]
/openjdk7/jaxp/src/org/w3c/dom/
H A DNode.java230 public String getNodeValue() method in interface:Node
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTM.java534 public String getNodeValue(int nodeHandle); method in interface:DTM
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM.java1008 public String getNodeValue(int nodeHandle) method in class:SAX2DTM
H A DSAX2DTM2.java3128 public String getNodeValue(int nodeHandle) method in class:SAX2DTM2
3356 handler.addAttribute(getNodeName(node), getNodeValue(node));
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java163 public String getNodeValue() { method in class:IIOAttr
334 public String getNodeValue(){ method in class:IIOMetadataNode
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DSOAPPartImpl.java534 public String getNodeValue() throws DOMException { method in class:SOAPPartImpl
535 return document.getNodeValue();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DAdaptiveResultTreeImpl.java1001 public String getNodeValue(int nodeHandle) method in class:AdaptiveResultTreeImpl
1004 return _dom.getNodeValue(nodeHandle);
1007 return super.getNodeValue(nodeHandle);
H A DSimpleResultTreeImpl.java836 public String getNodeValue(int nodeHandle) method in class:SimpleResultTreeImpl
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBase.java768 ps.println("Node Value: " + getNodeValue(i));
850 "=\"" + getNodeValue(nodeHandle) + "\"]";
1823 public abstract String getNodeValue(int nodeHandle); method in class:DTMDefaultBase
H A DDTMDocumentImpl.java1701 public String getNodeValue(int nodeHandle) method in class:DTMDocumentImpl
H A DDTMNodeProxy.java302 public final String getNodeValue() throws DOMException method in class:DTMNodeProxy
304 return dtm.getNodeValue(node);
1029 return dtm.getNodeValue(node);
1054 return dtm.getNodeValue(node).length();
1153 return (null == n) ? EMPTYSTRING : n.getNodeValue();
1261 return (null == retNode) ? EMPTYSTRING : retNode.getNodeValue();
1364 return dtm.getNodeValue(node);
1755 if (getNodeValue() == null) {
1756 if (arg.getNodeValue() != null) {
1760 else if (!getNodeValue()
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DUnImplNode.java550 public String getNodeValue() throws DOMException method in class:UnImplNode
553 error(XMLErrorResources.ER_FUNCTION_NOT_SUPPORTED); //"getNodeValue not supported!");
1416 if (getNodeValue() == null) {
1417 if (arg.getNodeValue() != null) {
1421 else if (!getNodeValue().equals(arg.getNodeValue())) {
1470 String value = attr.getNodeValue();
1559 String value = attr.getNodeValue();
1774 return getNodeValue(); // overriden in some subclasses

Completed in 4261 milliseconds