- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getNodeValue (0.09 sec)
-
src/main/java/org/codelibs/fess/util/PrunedTag.java
if (tag.equalsIgnoreCase(node.getNodeName())) { if (attrName != null) { final Node attr = node.getAttributes().getNamedItem(attrName); if (attr == null || !attrValue.equals(attr.getNodeValue())) { return false; } } if (id == null) { if (css == null) { return true; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
final Node classAttr = attributes.getNamedItem("class"); if (classAttr != null) { final String value = classAttr.getNodeValue(); if (StringUtil.isNotBlank(value)) { final String[] values = value.split("\\."); nameSet.add(values[values.length - 1]);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0)