Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for Field (0.66 sec)

  1. api/maven-api-settings/src/main/mdo/settings.mdo

              </description>
              <type>String</type>
            </field>
            <field>
              <name>protocol</name>
              <version>1.0.0+</version>
              <description>
                The proxy protocol.
              </description>
              <type>String</type>
              <defaultValue>http</defaultValue>
            </field>
            <field>
              <name>username</name>
              <version>1.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. api/maven-api-metadata/src/main/mdo/metadata.mdo

            </field>
            <field>
              <name>artifactId</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>The artifactId when this directory represents "groupId/artifactId" or "groupId/artifactId/version".</description>
            </field>
            <field>
              <name>versioning</name>
              <version>1.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/mdo/writer-stax.vm

          #elseif ( $field.type == "java.util.Properties" && $field.to == "String" && $field.multiplicity == "*" )
                writeProperties("$fieldTagName", ${classLcapName}.get${fieldCapName}(), serializer${loctrac});
          #elseif ( $field.to && $field.multiplicity == "1" )
                write${field.to}("$fieldTagName", ${classLcapName}.get${fieldCapName}(), serializer);
          #elseif ( $field.to && $field.multiplicity == "*" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. maven-model/src/main/java/org/apache/maven/model/InputLocationTracker.java

        /**
         * Gets the location of the specified field in the input
         * source.
         *
         * @param field The key of the field, must not be
         * <code>null</code>.
         * @return The location of the field in the input source or
         * <code>null</code> if unknown.
         */
        public InputLocation getLocation(Object field);
        /**
         * Sets the location of the specified field.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

                return null;
            }
            for (Field field : cls.getDeclaredFields()) {
                if (!field.isSynthetic() || !field.getName().startsWith("this$") || field.getType() != enclosingClass) {
                    continue;
                }
                field.setAccessible(true);
                try {
                    return field.get(innerClassInstance);
                } catch (IllegalAccessException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. src/mdo/model.vm

            #if ( $field.type == "String" )
                    this.${field.name} = "${field.defaultValue}";
            #elseif ( $field.type != "java.util.List" && $field.type != "java.util.Properties" )
                    this.${field.name} = ${field.defaultValue};
            #end
          #end
        #end
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. src/mdo/model-v3.vm

        public ${type} ${pfx}${cap}() {
          #if ( $field.to != "String" && $field.type == "java.util.List" && $field.multiplicity == "*" )
            return new WrapperList<${field.to}, ${packageModelV4}.${field.to}>(
                        () -> getDelegate().get${cap}(), l -> update(getDelegate().with${cap}(l)),
                        d -> new ${field.to}(d, this), ${field.to}::getDelegate);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. src/mdo/writer.vm

            #end
          #else
                // TODO: type=${field.type} to=${field.to} multiplicity=${field.multiplicity}
          #end
        #end
      #end
      #foreach ( $field in $allFields )
        #if ( ! $Helper.xmlFieldMetadata( $field ).attribute && ! $Helper.xmlFieldMetadata( $field ).transient )
          #set ( $fieldTagName = $Helper.xmlFieldMetadata( $field ).tagName )
          #if ( ! $fieldTagName )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. src/mdo/model-version.vm

                #elseif ( $field.isOneMultiplicity() )
                $pfx is_${v}(${var}.get${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
                #elseif ( $field.type == "boolean" || $field.type == "Boolean" )
                $pfx has(${var}.is${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
                #else
                $pfx has(${var}.get${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. src/mdo/reader.vm

                            ${field.name}.put(key, value);
                        }
                        ${classLcapName}.${field.name}(${field.name});
                        break;
          #elseif ( $field.to && $field.multiplicity == "1" )
                        ${classLcapName}.${field.name}(parse${field.toClass.name}(parser, strict));
                        break;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
Back to top