Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for getSuperClass (0.35 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                noMappingClass = Object.class;
                for (Class<?> c = type; c != null && noMappingClass == Object.class; c = c.getSuperclass()) {
                    if (c.getAnnotation(NoConventionMapping.class) != null) {
                        noMappingClass = c;
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    typedParameter) { this.methodName = methodName; this.expectedNumberOfPara = expectedNumberOfPara; this.typedParameter = typedParameter; } public Class<?> findExpectedType(Class<?> fromClass) { for (Class<?> c = fromClass; c != Object.class; c = c.getSuperclass()) { for (Method method : c.getDeclaredMethods()) { if (canObtainExpectedTyp(method)) { return expectedTypeFrom(method); } } } throw new Error("Cannot determine correct type for " + methodName + "() method."); } /** * @param method The method to...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
Back to top