Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DefaultNewThing (0.08 sec)

  1. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    }
    ```
    
    This is not acceptable:
    
    ```groovy
    public interface NewThing {
        Property<String> getSomeProperty()
    }
    
    abstract class DefaultNewThing implements NewThing {
        private final Property<String> someProperty
        DefaultNewThing(ObjectFactory objects) {
           someProperty = objects.property(String.class)
        }
        public Property<String> getSomeProperty() {
            return someProperty
        }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 15 20:00:57 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top