Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setIgnoreMe1 (0.09 seconds)

  1. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClass.groovy

            this
        }
    
        void setSomeProp(CombinedInterface value) {
        }
    
        /**
         * A write-only property.
         */
        void setWriteOnly(JavaInterface value) {
        }
    
        public void setIgnoreMe1() {
        }
    
        public void setIgnoreMe2(String a, int b) {
        }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 915 bytes
    - Click Count (0)
  2. build-logic/documentation/src/test/resources/org/gradle/test/JavaClass.java

         * An ignored field.
         */
        String ignoreMe1;
    
        /**
         * Another ignored field.
         */
        final long ignoreMe2 = 9;
    
        /**
         * Not a setter.
         */
        public void setIgnoreMe1() {
        }
    
        /**
         * Not a setter.
         */
        public void setIgnoreMe2(String a, int b) {
        }
    
        /**
         * A write-only property.
         */
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.1K bytes
    - Click Count (0)
Back to Top