- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for nodeList (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
*/ protected void parseTextContent(final Node node, final StringBuilder buf) { if (node.hasChildNodes()) { final NodeList nodeList = node.getChildNodes(); for (int i = 0; i < nodeList.getLength(); i++) { final Node childNode = nodeList.item(i); parseTextContent(childNode, buf); } } else if (node.getNodeType() == Node.TEXT_NODE) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 55.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
final Document doc = builder.parse(is); final NodeList snapshotNodeList = doc.getElementsByTagName("snapshot"); if (snapshotNodeList.getLength() > 0) { final NodeList nodeList = snapshotNodeList.item(0).getChildNodes(); for (int i = 0; i < nodeList.getLength(); i++) { final Node node = nodeList.item(i);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Mar 04 15:19:41 GMT 2026 - 25.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
@Override public Node getParentNode() { return null; } @Override public org.w3c.dom.NodeList getChildNodes() { return null; } @Override public Node getFirstChild() { return null; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
final String data = "<html><head><meta name=\"description\" content=\"Öffnungszeiten\"/></head><body></body></html>"; final Document document = getDocument(data); final org.w3c.dom.NodeList metaNodes = document.getElementsByTagName("META"); String description = null; for (int i = 0; i < metaNodes.getLength(); i++) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 62.9K bytes - Click Count (0)