Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for converter (0.73 sec)

  1. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConverterLookup.java

        @Override
        public void registerConverter(ConfigurationConverter converter) {
            delegate.registerConverter(converter);
        }
    
        @Override
        public ConfigurationConverter lookupConverterForType(Class<?> type) throws ComponentConfigurationException {
            ConfigurationConverter converter = delegate.lookupConverterForType(type);
            return converter.getClass().equals(ObjectWithFieldsConverter.class)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 12 19:39:23 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java

    import org.codehaus.plexus.component.configurator.converters.AbstractConfigurationConverter;
    import org.codehaus.plexus.component.configurator.converters.basic.AbstractBasicConverter;
    import org.codehaus.plexus.component.configurator.converters.composite.ObjectWithFieldsConverter;
    import org.codehaus.plexus.component.configurator.converters.lookup.ConverterLookup;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    omponent.configurator.ComponentConfigurati; } org/codehaus/plexus/component/configurator/converters/basic/Converter.class package org.codehaus.plexus.component.configurator.converters.basic; public abstract interface Converter { public abstract boolean canConvert(Class); public abstract Object fromString(String); public abstract String toString(Object); } org/codehaus/plexus/component/configurator/converters/basic/DateConverter.class package org.codehaus.plexus.component.configurator.converters.basic;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    omponent.configurator.ComponentConfigurati; } org/codehaus/plexus/component/configurator/converters/basic/Converter.class package org.codehaus.plexus.component.configurator.converters.basic; public abstract interface Converter { public abstract boolean canConvert(Class); public abstract Object fromString(String); public abstract String toString(Object); } org/codehaus/plexus/component/configurator/converters/basic/DateConverter.class package org.codehaus.plexus.component.configurator.converters.basic;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

        }
    
        /**
         * Parses a sequence of XML elements and converts them to the appropriate array type.
         *
         * @param parser The XML parser
         * @return Converted array instance
         */
        private Object parseArray(final MXParser parser, final TypeLiteral<?> toType) throws Exception {
            // convert to a collection first then convert that into an array
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/plugin/ReportingConverter.java

     */
    @Deprecated
    public interface ReportingConverter {
    
        /**
         * Converts values from model's reporting section into the configuration for Maven Site Plugin 3.x.
         *
         * @param model The model whose reporting section should be converted, must not be <code>null</code>.
         * @param request The model building request that holds further settings, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactStatus.java

         */
        public static final ArtifactStatus GENERATED = new ArtifactStatus("generated", 1);
    
        /**
         * Low trust - was converted from the Maven 1.x repository.
         */
        public static final ArtifactStatus CONVERTED = new ArtifactStatus("converted", 2);
    
        /**
         * Moderate trust - it was deployed directly from a partner.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPluginXmlFactory.java

            return new DefaultPluginXmlFactory().fromXmlString(xml);
        }
    
        /**
         * Simply converts the given content to an xml string.
         *
         * @param content the object to convert
         * @return the xml string representation
         * @throws XmlWriterException if an error occurs during the transformation
         * @see #fromXmlString(String)
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

             * ended up with a magic value that is not compatible with the type of the configured mojo parameter (a string
             * could still be converted by the configurator so we leave those alone). If so, back off to evaluating the
             * expression from properties only.
             */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            return Optional.ofNullable(location);
        }
    
        /**
         * Returns the path type associated to the given {@code javax.tool} location.
         * This method is the converse of {@link #location()}.
         *
         * @param location identification of a path in the {@code javax.tool} API
         * @return Java path type associated to the given location
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top