Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for HasReadOnlyFinalProperty (0.2 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

        }
    }
    
    interface WithProperties {
        String getProp()
    }
    
    class ImplementsInterface implements WithProperties {
        String prop
    }
    
    class HasReadOnlyFinalProperty {
        final Property<String> someValue
    
        HasReadOnlyFinalProperty(ObjectFactory objectFactory) {
            someValue = objectFactory.property(String)
        }
    }
    
    class HasReadOnlyProperty {
        String other
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top