|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.api.DomainObjectCollectionorg.gradle.api.plugins.PluginContainer
org.gradle.api.plugins.PluginCollection
public interface PluginContainer extends PluginCollection
A PluginContainer is used to manage a set of Plugin instances applied to a particular project.
Plugins can be specified using either an id or type. The id of a plugin is specified using a META-INF/gradle-plugins/${id}.properties classpath resource.
Method Summary | |
---|---|
Plugin
|
apply(java.lang.String id)
Has the same behavior as apply(Class) except that the the plugin is specified via its id. |
T
|
apply(java.lang.Class type)
Applies a plugin to the project. |
Plugin
|
findPlugin(java.lang.String id)
Returns the plugin for the given id. |
T
|
findPlugin(java.lang.Class type)
Returns the plugin for the given type. |
Plugin
|
getAt(java.lang.String id)
Returns a plugin with the specified id if this plugin has been used in the project. |
T
|
getAt(java.lang.Class type)
Returns a plugin with the specified type if this plugin has been used in the project. |
Plugin
|
getPlugin(java.lang.String id)
Returns a plugin with the specified id if this plugin has been used in the project. |
T
|
getPlugin(java.lang.Class type)
Returns a plugin with the specified type if this plugin has been used in the project. |
boolean
|
hasPlugin(java.lang.String id)
Returns true if the container has a plugin with the given id, false otherwise. |
boolean
|
hasPlugin(java.lang.Class type)
Returns true if the container has a plugin with the given type, false otherwise. |
Methods inherited from interface PluginCollection | |
---|---|
allPlugins, allPlugins, matching, matching, whenPluginAdded, whenPluginAdded, withType |
Methods inherited from interface DomainObjectCollection | |
---|---|
all, all, allObjects, allObjects, findAll, getAll, matching, matching, whenObjectAdded, whenObjectAdded, whenObjectRemoved, withType, withType, withType |
Methods inherited from interface java.lang.Iterable | |
---|---|
java.lang.Iterable#iterator() |
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#notify(), java.lang.Object#notifyAll(), java.lang.Object#toString() |
Method Detail |
---|
public Plugin apply(java.lang.String id)
id
- The id of the plugin to be applied.
public T apply(java.lang.Class type)
type
- The type of the plugin to be used
public Plugin findPlugin(java.lang.String id)
id
- The id of the plugin
public T findPlugin(java.lang.Class type)
type
- The type of the plugin
public Plugin getAt(java.lang.String id)
id
- The id of the plugin
public T getAt(java.lang.Class type)
type
- The type of the plugin
public Plugin getPlugin(java.lang.String id)
id
- The id of the plugin
public T getPlugin(java.lang.Class type)
type
- The type of the plugin
public boolean hasPlugin(java.lang.String id)
id
- The id of the plugin
public boolean hasPlugin(java.lang.Class type)
type
- The type of the plugin
Groovy Documentation