Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getNodeName (0.42 sec)

  1. src/main/java/org/codelibs/fess/util/PrunedTag.java

         * @return true if the node matches this pruned tag configuration, false otherwise
         */
        public boolean matches(final Node node) {
            if (tag.equalsIgnoreCase(node.getNodeName())) {
                if (attrName != null) {
                    final Node attr = node.getAttributes().getNamedItem(attrName);
                    if (attr == null || !attrValue.equals(attr.getNodeValue())) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top