Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for findMostSpecificMethod (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaUtils.java

         * @return the most specific declaration of the method.
         * @throws IllegalArgumentException if no declaration can be found.
         */
        public static Method findMostSpecificMethod(Iterable<Method> declaringMethods) {
            for (Method method : declaringMethods) {
                if (Proxy.isProxyClass(method.getDeclaringClass())) {
                    continue;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/PropertyAccessorExtractionContext.java

        public PropertyAccessorExtractionContext(PropertyAccessorType accessorType, Iterable<Method> declaringMethods) {
            Method mostSpecificDeclaration = ModelSchemaUtils.findMostSpecificMethod(declaringMethods);
            this.accessorType = accessorType;
            this.declaringMethods = ImmutableList.copyOf(declaringMethods);
            this.mostSpecificDeclaration = mostSpecificDeclaration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top