|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD | |||||||
org.gradle.api.plugins.PluginContainerorg.gradle.api.plugins.PluginCollection
java.lang.Iterable
org.gradle.api.DomainObjectCollection
org.gradle.api.DomainObjectSet
java.util.Collection
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. |
java.lang.Object
|
apply(java.lang.Class type)
Applies a plugin to the project. |
Plugin
|
findPlugin(java.lang.String id)
Returns the plugin for the given id. |
java.lang.Object
|
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. |
java.lang.Object
|
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. |
java.lang.Object
|
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 DomainObjectSet | |
|---|---|
| findAll, matching, matching, withType |
| Methods inherited from interface DomainObjectCollection | |
|---|---|
| all, all, allObjects, allObjects, findAll, findAll, getAll, matching, matching, whenObjectAdded, whenObjectAdded, whenObjectRemoved, whenObjectRemoved, withType, withType, withType |
| Methods inherited from interface java.util.Set | |
|---|---|
| java.util.Set#add(java.lang.Object), java.util.Set#equals(java.lang.Object), java.util.Set#hashCode(), java.util.Set#clear(), java.util.Set#isEmpty(), java.util.Set#contains(java.lang.Object), java.util.Set#addAll(java.util.Collection), java.util.Set#size(), java.util.Set#toArray([Ljava.lang.Object;), java.util.Set#toArray(), java.util.Set#iterator(), java.util.Set#remove(java.lang.Object), java.util.Set#removeAll(java.util.Collection), java.util.Set#containsAll(java.util.Collection), java.util.Set#retainAll(java.util.Collection) |
| Method Detail |
|---|
public Plugin apply(java.lang.String id)
id - The id of the plugin to be applied.
public java.lang.Object 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 java.lang.Object 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 java.lang.Object 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 java.lang.Object 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