Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MethodInfo (0.04 sec)

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

            Class<?> beanType = bean.getClass();
    
            // Try setter/adder methods first
            MethodInfo methodInfo = findCachedMethod(beanType, propertyName, valueType);
            if (methodInfo != null) {
                try {
                    Object value = convertPropertyForMethod(beanType, methodInfo, valueType, configuration);
                    if (value != null) {
                        if (listener != null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 12 14:59:46 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

            if (upcastCount < methods.length) {
                methods = new Method[upcastCount];
            }
    
            int j = 0;
            for (MethodInfo methodInfo : methodInfos) {
                if (methodInfo.upcast) {
                    methods[j++] = methodInfo.method;
                }
            }
            return methods;
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    trospection; final synchronized class ClassMap$CacheMiss { private void ClassMap$CacheMiss(); } org/codehaus/plexus/util/introspection/ClassMap$MethodInfo.class package org.codehaus.plexus.util.introspection; final synchronized class ClassMap$MethodInfo { reflect.Method method; String name; Class[] parameterTypes; boolean upcast; void ClassMap$MethodInfo(reflect.Method); void tryUpcasting(Class) throws NoSuchMethodExceptio; } org/codehaus/plexus/util/introspection/ClassMap.class package org.code...
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top