Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for namespaceUri (0.18 sec)

  1. src/mdo/model.vm

        #end
                } else {
                    this.base = base;
                }
            }
    
        #if ( $class == $root )
            @Nonnull
            public Builder namespaceUri(String namespaceUri) {
                this.namespaceUri = namespaceUri;
                return this;
            }
    
            @Nonnull
            public Builder modelEncoding(String modelEncoding) {
                this.modelEncoding = modelEncoding;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

        public XmlNodeImpl(
                String prefix,
                String namespaceUri,
                String name,
                String value,
                Map<String, String> attributes,
                List<XmlNode> children,
                Object location) {
            this.prefix = prefix == null ? "" : prefix;
            this.namespaceUri = namespaceUri == null ? "" : namespaceUri;
            this.name = Objects.requireNonNull(name);
            this.value = value;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

                synchronized (this) {
                    if (pluginDescriptorV4 == null) {
                        pluginDescriptorV4 = org.apache.maven.api.plugin.descriptor.PluginDescriptor.newBuilder()
                                .namespaceUri(null)
                                .modelEncoding(null)
                                .name(name)
                                .description(description)
                                .groupId(groupId)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/mdo/reader-stax.vm

        #if ( $Helper.xmlFieldMetadata( $field ).format )
            ${classLcapName}.${field.name}($Helper.xmlFieldMetadata( $field ).format);
        #end
      #end
      #if ( $class == $root )
            ${classLcapName}.namespaceUri(parser.getNamespaceURI());
            ${classLcapName}.modelEncoding(parser.getEncoding());
      #end
            return ${classLcapName}.build();
        }
    
     #end
    #end
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
Back to top