Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getReadOnly (0.21 sec)

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

        def String[] arrayProp
    
        private def ignoreMe1;
        public int ignoreMe2;
        protected int ignoreMe3;
        static String ignoreMe4;
    
        /**
         * A read-only property.
         */
        def getReadOnly() {
            'value'
        }
    
        /**
         * A property.
         */
        CombinedInterface getSomeProp() {
            this
        }
    
        void setSomeProp(CombinedInterface value) {
        }
    
        /**
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 915 bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/resources/org/gradle/test/JavaClass.java

    package org.gradle.test;
    
    /**
     * This is a java class.
     */
    public class JavaClass extends A implements CombinedInterface, JavaInterface {
        /**
         * A read-only property.
         */
        public String getReadOnly() {
            return "value";
        }
    
        /**
         * An ignored field.
         */
        String ignoreMe1;
    
        /**
         * Another ignored field.
         */
        final long ignoreMe2 = 9;
    
        /**
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.1K bytes
    - Viewed (0)
Back to top