Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetterMethodBackedPropertyAccessor (0.31 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/JavaPropertyReflectionUtil.java

                return true;
            }
            return false;
        }
    
        private static class GetterMethodBackedPropertyAccessor<T, F> implements PropertyAccessor<T, F> {
            private final String property;
            private final Method method;
            private final Class<F> returnType;
    
            GetterMethodBackedPropertyAccessor(String property, Class<F> returnType, Method method) {
                this.property = property;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top