|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.api.NamedDomainObjectSetjava.lang.Iterable
org.gradle.api.DomainObjectCollection
java.util.Collection
org.gradle.api.NamedDomainObjectCollection
org.gradle.api.NamedDomainObjectContainer
public interface NamedDomainObjectContainer extends org.gradle.util.Configurable, NamedDomainObjectSet
A named domain object container is a specialisation of NamedDomainObjectSet that adds the ability to create instances of the element type.
Implementations may use different strategies for creating new object instances.
Note that a container is an implementation of java.util.SortedSet, which means that the container is guaranteed to only contain elements with unique names within this container. Furthermore, items are ordered by their name.
- The type of domain objects in this container.Method Summary | |
---|---|
NamedDomainObjectContainer
|
configure(groovy.lang.Closure configureClosure)
Allows the container to be configured, creating missing objects as they are referenced. |
T
|
create(java.lang.String name)
Creates a new item with the given name, adding it to this container. |
T
|
create(java.lang.String name, groovy.lang.Closure configureClosure)
Creates a new item with the given name, adding it to this container, then configuring it with the given closure. |
Methods inherited from interface NamedDomainObjectSet | |
---|---|
findAll, matching, matching, withType |
Methods inherited from interface org.gradle.util.Configurable | |
---|---|
org.gradle.util.Configurable#configure(groovy.lang.Closure) |
Methods inherited from class java.lang.Object | |
---|---|
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#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Method Detail |
---|
public NamedDomainObjectContainer configure(groovy.lang.Closure configureClosure)
Allows the container to be configured, creating missing objects as they are referenced.
TODO: example usage
configureClosure
- The closure to configure this container with
public T create(java.lang.String name)
name
- The name to assign to the created object
public T create(java.lang.String name, groovy.lang.Closure configureClosure)
name
- The name to assign to the created objectconfigureClosure
- The closure to configure the created object with
Groovy Documentation