Annotation Type ToolingModelContract
-
@Retention(RUNTIME) @Target(TYPE) @Incubating public @interface ToolingModelContract
Annotation used to mark TAPI model interfaces. On the client side such interfaces are instantiated via Java dynamic proxies, and we use this annotation when we want these proxies to have richer behaviour than just implementing the base interface.For example. Let's say the TAPI model interface is
Animal
, but which also has child interfaces such asDog
,Cat
,Bird
. When we request a model typed asAnimal
on the TAPI client side, we will get a Java dynamic proxy, on which we can call any method from theAnimal
interface, but even if that model was originally let's say aDog
on the Gradle daemon side, the proxy will not support any methods specific toDog
, like let's sayDog.bark()
.Basically polymorphism isn't supported by default in TAPI client-side model instances. This is what this annotation can be used to fix. We can use it to mark the base model interface (
Animal
in the above example) and specify which of its subtypes should be polymorpically handled on the TAPI client-side.Let's say we define the
Animal
model interface like this:@ToolingModelContract(subTypes = [Dog.class, Cat.class]) interface Animal {}
On the client-side we will be able to write code such as:
if (model instanceof Dog) { ((Dog) model).bark(); } else if (model instanceof Cat) { ((Cat) model).meow(); } else if (model instance of Bird) { // will never be true, Bird is not specified as a model contract type }
- Since:
- 8.9
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.Class<?>[]
subTypes
Child types of a TAPI model interface (marked by this annotation), which will be handled polymorpically on the TAPI client side.
-