Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNodeName (0.04 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)
  2. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                        final Node node = nodeList.item(i);
                        if ("timestamp".equalsIgnoreCase(node.getNodeName())) {
                            timestamp = node.getTextContent();
                        } else if ("buildNumber".equalsIgnoreCase(node.getNodeName())) {
                            buildNumber = node.getTextContent();
                        }
                    }
                }
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/xml/DomUtil.java

            assertArgumentNotNull("entityReference", entityReference);
            assertArgumentNotNull("buf", buf);
    
            buf.append('&');
            buf.append(entityReference.getNodeName());
            buf.append(';');
        }
    
        /**
         * Appends the string representation of a {@link Node}.
         *
         * @param node
         *            The node. 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)
  4. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

                attrNode.nodeValue = value;
                attributes.put(name, attrNode);
                namedNodeMap.setNamedItem(name, attrNode);
            }
    
            @Override
            public String getNodeName() {
                return nodeName;
            }
    
            @Override
            public NamedNodeMap getAttributes() {
                return namedNodeMap;
            }
    
            private String nodeValue;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top