Searched defs:getTextContent (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/test/java/libcore/xml/
H A DSimpleBuilderTest.java46 private String getTextContent(Node node) { method in class:SimpleBuilderTest
51 result = result + getTextContent(child);
77 getTextContent(one));
79 getTextContent(two));
80 assertEquals("Rent this space!", getTextContent(three));
81 assertEquals("", getTextContent(four));
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDocumentTypeImpl.java110 @Override public String getTextContent() throws DOMException { method in class:DocumentTypeImpl
H A DInnerNodeImpl.java203 public String getTextContent() throws DOMException { method in class:InnerNodeImpl
211 return hasTextContent(child) ? child.getTextContent() : "";
215 getTextContent(buf);
219 void getTextContent(StringBuilder buf) throws DOMException { method in class:InnerNodeImpl
223 ((NodeImpl) child).getTextContent(buf);
H A DDocumentImpl.java431 @Override public String getTextContent() { method in class:DocumentImpl
H A DNodeImpl.java393 public String getTextContent() throws DOMException { method in class:NodeImpl
397 void getTextContent(StringBuilder buf) throws DOMException { method in class:NodeImpl
/libcore/luni/src/main/java/org/w3c/dom/
H A DNode.java678 public String getTextContent() method in interface:Node

Completed in 103 milliseconds