Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSuperclass (0.14 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

                 */
    
                if (upcastCount == l) {
                    return upcastCount;
                }
            }
    
            // Examine superclass
            Class<?> superclazz = clazz.getSuperclass();
            if (superclazz != null) {
                upcastCount = getAccessibleMethods(superclazz, methodInfos, upcastCount);
    
                // Short circuit if all methods were upcast
                if (upcastCount == l) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java

                            } finally {
                                field.setAccessible(isAccessible);
                            }
                        }
                    }
    
                    traverseObjectWithParents(cls.getSuperclass(), target);
                }
            }
    
            private boolean isQualifiedForInterpolation(Class<?> cls) {
                return !cls.getPackage().getName().startsWith("java")
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top