Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NodeList (0.05 sec)

  1. 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);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/xml/DomUtil.java

        }
    
        /**
         * Appends the string representation of a {@link NodeList}.
         *
         * @param children
         *            The child nodes. Must not be {@literal null}.
         * @param buf
         *            The string buffer. Must not be {@literal null}.
         */
        public static void appendChildren(final NodeList children, final StringBuilder buf) {
            assertArgumentNotNull("children", children);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  3. 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;
            }
    
            @Override
    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