Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isIsGetterName (0.34 sec)

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

                    return GET_GETTER;
                }
                // is method that returns Boolean is not a getter according to JavaBeans, but include it for compatibility with Groovy 3
                if (isIsGetterName(methodName) && (method.getReturnType().equals(Boolean.TYPE) || (isGroovy3() && method.getReturnType().equals(Boolean.class)))) {
                    return IS_GETTER;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            PropertyAccessorType.GET_GETTER.propertyNameFor(getGetterName) == propertyName
            Introspector.decapitalize(getGetterName.substring(3)) == propertyName
    
            PropertyAccessorType.isIsGetterName(isGetterName)
            PropertyAccessorType.IS_GETTER.propertyNameFor(isGetterName) == propertyName
            Introspector.decapitalize(isGetterName.substring(2)) == propertyName
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top