- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getDocumentElement (0.25 sec)
-
src/main/java/org/codelibs/core/xml/DomUtil.java
*/ public static String toString(final Document document) { assertArgumentNotNull("document", document); final StringBuilder buf = new StringBuilder(1000); appendElement(document.getDocumentElement(), buf); return new String(buf); } /** * Converts an {@link Element} to a string. * * @param element * The element. Must not be {@literal null}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
final XPath xPathApi = getXPathAPI().createXPath(f -> {}); xPathApi.setNamespaceContext(new DefaultNamespaceContext(doc.getNodeType() == Node.DOCUMENT_NODE ? doc.getDocumentElement() : doc)); return xPathApi.evaluateExpression(xpath, doc, XPathNodes.class); } /** * Retrieves an XPathAPI instance from the cache or creates a new one.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0)