ManagedType

Marks types that can be instantiated by Gradle via the managed object infrastructure.

Types annotated with this annotation will be automatically instantiated by Gradle when constructing managed objects. To create a managed property, declare an abstract getter method for the given type. For the managed property to be created properly, the object containing it must be instantiated using the newInstance or as a managed org.gradle.api.tasks.Nested property. The example below creates a ConfigurableFileCollection and RegularFileProperty automatically when the MyObject instance is instantiated by Gradle:

interface NestedExample {
    Property<String> getExampleMessage();
}

interface MyObject {
    ConfigurableFileCollection getFiles();

    RegularFileProperty getProperty();

    @Nested
    NestedExample getNested();
}

def instance = objects.newInstance(MyObject)
instance.files.from(file("foo.txt"))
instance.property = file("bar.txt")
instance.nested.exampleMessage = "Hello, World!"

Since

9.0.0

Functions

Link copied to clipboard
abstract fun annotationType(): Class<out Annotation>
Link copied to clipboard
abstract fun equals(p: Any): Boolean
Link copied to clipboard
abstract fun hashCode(): Int
Link copied to clipboard
abstract fun toString(): String