Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DefaultExistingThing (1.11 sec)

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

    ```groovy
    public interface ExistingThing {
        Property<String> getSomeProperty()
    }
    
    abstract class DefaultExistingThing implements ExistingThing {
        DefaultExistingThing() {
            getSomeProperty().convention("some-value")
        }
    }
    
    // in plugin
    existingThing = objects.newInstance(DefaultExistingThing.class)
    existingThing.convention("some-value")
    ```
    
    Registered: Wed Oct 30 11:36:09 UTC 2024
    - Last Modified: Tue Oct 15 20:00:57 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top