|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.api.plugins.Convention org.gradle.api.plugins.ExtensionContainer
public interface Convention extends ExtensionContainer
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 Project or a Task.
Method Summary | |
---|---|
Object
|
findPlugin(Class type)
Locates the plugin convention object with the given type. |
DynamicObject
|
getExtensionsAsDynamicObject()
Returns a dynamic object which represents the properties and methods contributed by the extensions and convention objects contained in this convention. |
Object
|
getPlugin(Class type)
Locates the plugin convention object with the given type. |
Map
|
getPlugins()
Returns the plugin convention objects contained in this convention. |
Methods inherited from interface ExtensionContainer | |
---|---|
add, add, configure, create, findByName, findByType, getByName, getByType, getExtraProperties |
Method Detail |
---|
public Object findPlugin(Class type)
type
- The convention object type.
public DynamicObject getExtensionsAsDynamicObject()
public Object getPlugin(Class type)
type
- The convention object type.
public Map getPlugins()
Gradle API 1.12