|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD | |||||||
org.gradle.api.internal.DynamicObjectorg.gradle.api.plugins.Convention
interface Convention extends DynamicObject
A Convention manages a set of convention objects. When you add a convention object to a Convention, and the properties and methods of the convention object become available as properties and methods of the object which the convention is associated to. A convention object is simply a POJO or POGO. Usually, a Convention is used by plugins to extend a org.gradle.api.Project or a org.gradle.api.Task.
| Method Summary | |
|---|---|
T
|
getPlugin(java.lang.Class type)
Locates the plugin convention object with the given type. |
Map
|
getPlugins()
Returns the plugin convention objects contained in this convention. |
| Method Detail |
|---|
public T getPlugin(java.lang.Class type)
public Map getPlugins()
Groovy Documentation