|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
T - The type of plugins which this collection contains.public interface PluginCollection<T extends Plugin>
A PluginCollection represents a collection of Plugin instances.
| Method Summary | ||
|---|---|---|
void |
allPlugins(Action<? super T> action)
Deprecated. Use DomainObjectCollection.all(org.gradle.api.Action) instead. |
|
void |
allPlugins(Closure closure)
Deprecated. Use DomainObjectCollection.all(groovy.lang.Closure) instead. |
|
PluginCollection<T> |
matching(Closure closure)
Returns a collection which contains the objects in this collection which meet the given closure specification. |
|
PluginCollection<T> |
matching(Spec<? super T> spec)
Returns a collection which contains the objects in this collection which meet the given specification. |
|
Action<? super T> |
whenPluginAdded(Action<? super T> action)
Adds an Action to be executed when a plugin is added to this collection. |
|
void |
whenPluginAdded(Closure closure)
Adds a closure to be called when a plugin is added to this collection. |
|
|
withType(Class<S> type)
Returns a collection containing the objects in this collection of the given type. |
|
| Methods inherited from interface org.gradle.api.DomainObjectCollection |
|---|
all, all, allObjects, allObjects, findAll, getAll, whenObjectAdded, whenObjectAdded, whenObjectRemoved, withType, withType |
| Methods inherited from interface java.lang.Iterable |
|---|
iterator |
| Method Detail |
|---|
PluginCollection<T> matching(Spec<? super T> spec)
matching in interface DomainObjectCollection<T extends Plugin>spec - The specification to use.
PluginCollection<T> matching(Closure closure)
matching in interface DomainObjectCollection<T extends Plugin>closure - The specification to use. The closure gets a collection element as an argument.
<S extends T> PluginCollection<S> withType(Class<S> type)
withType in interface DomainObjectCollection<T extends Plugin>type - The type of objects to find.
Action<? super T> whenPluginAdded(Action<? super T> action)
Action to be executed when a plugin is added to this collection.
action - The action to be executed
void whenPluginAdded(Closure closure)
closure - The closure to be called@Deprecated void allPlugins(Action<? super T> action)
DomainObjectCollection.all(org.gradle.api.Action) instead.
action - The action to be executed@Deprecated void allPlugins(Closure closure)
DomainObjectCollection.all(groovy.lang.Closure) instead.
closure - The closure to be called
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||