Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getReadOnlyString (0.2 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/UnmanagedImplStructStrategyTest.groovy

            schema.getProperty('parent').schema == schema
        }
    
        interface SomeType {
            String getReadOnlyString()
    
            List<String> getStrings()
            void setStrings(List<String> strings)
        }
    
        @UnmanagedStruct
        interface SomeStruct {
            String getReadOnlyString()
        }
    
        interface Person {
            Person getParent()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/RuleSourceSchemaExtractionStrategyTest.groovy

            schema instanceof StructSchema
            schema.propertyNames.empty
            schema.properties.isEmpty()
        }
    
        static abstract class SomeRules extends RuleSource {
            abstract String getReadOnlyString()
            abstract List<String> getStrings()
            abstract void setStrings(List<String> strings)
        }
    
        def "assembles schema for RuleSource subtype"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedImplStructStrategyTest.groovy

            schema.getProperty('parent').type == schema.type
            schema.getProperty('parent').schema == schema
        }
    
        @Managed
        interface SomeType {
            String getReadOnlyString()
    
            List<String> getStrings()
            void setStrings(List<String> strings)
        }
    
        @Managed
        interface Person {
            Person getParent()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top