Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaTestSubject.java

        }
    
        public void setMyProperty(String value) {
            myProp = value;
        }
    
        public void setMyProperty(Object value) {
            myProp = value.toString();
        }
    
        public boolean isMyBooleanProperty() {
            return myBooleanProp;
        }
    
        public void setMyBooleanProperty(boolean value) {
            myBooleanProp = value;
        }
    
        public boolean getMyOtherBooleanProperty() {
            return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top