Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lookupConverterForType (0.19 sec)

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

            delegate.registerConverter(converter);
        }
    
        @Override
        public ConfigurationConverter lookupConverterForType(Class<?> type) throws ComponentConfigurationException {
            ConfigurationConverter converter = delegate.lookupConverterForType(type);
            return converter.getClass().equals(ObjectWithFieldsConverter.class)
                    ? new EnhancedConfigurationConverter()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelper.java

                Class<?> beanType, Class<?> rawPropertyType, Type genericPropertyType, PlexusConfiguration configuration)
                throws ComponentConfigurationException {
    
            ConfigurationConverter converter = lookup.lookupConverterForType(rawPropertyType);
    
            if (!(genericPropertyType instanceof Class) && converter instanceof ParameterizedConfigurationConverter) {
                Type[] propertyTypeArgs = TypeArguments.get(genericPropertyType);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 12 14:59:46 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top