Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for namespaceUri (0.06 sec)

  1. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

            }
    
            /**
             * Sets the namespace URI of the XML node.
             *
             * @param namespaceUri the namespace URI of the XML node
             * @return this builder instance
             */
            public Builder namespaceUri(String namespaceUri) {
                this.namespaceUri = namespaceUri;
                return this;
            }
    
            /**
             * Sets the namespace prefix of the XML node.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jul 19 11:09:56 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            public boolean isSameNode(Node other) {
                return false;
            }
    
            @Override
            public String lookupPrefix(String namespaceURI) {
                return null;
            }
    
            @Override
            public boolean isDefaultNamespace(String namespaceURI) {
                return false;
            }
    
            @Override
            public String lookupNamespaceURI(String prefix) {
                return null;
    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