Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MutablePropertyDetails (0.19 sec)

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

    import java.lang.reflect.Field;
    import java.lang.reflect.Method;
    import java.util.Collection;
    
    class MutablePropertyDetails implements PropertyDetails {
        private final String name;
        private final MethodSet getters = new MethodSet();
        private final MethodSet setters = new MethodSet();
        private Field field;
    
        MutablePropertyDetails(String name) {
            this.name = name;
        }
    
        @Override
        public String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MutableClassDetails.java

        }
    
        void instanceMethod(Method method) {
            instanceMethods.add(method);
        }
    
        MutablePropertyDetails property(String propertyName) {
            MutablePropertyDetails property = properties.get(propertyName);
            if (property == null) {
                property = new MutablePropertyDetails(propertyName);
                properties.put(propertyName, property);
            }
            return property;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top