Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isSetterName (0.16 sec)

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

                    return IS_GETTER;
                }
            }
            if (takesSingleParameter(method) && isSetterName(methodName)) {
                return SETTER;
            }
            return null;
        }
    
        /**
    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

            Introspector.decapitalize(getGetterName.substring(3)) == propertyName
    
            PropertyAccessorType.isIsGetterName(isGetterName)
            PropertyAccessorType.IS_GETTER.propertyNameFor(isGetterName) == propertyName
            Introspector.decapitalize(isGetterName.substring(2)) == propertyName
    
            PropertyAccessorType.isSetterName(setterName)
            PropertyAccessorType.SETTER.propertyNameFor(setterName) == 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