creating
fun <T : Any> NamedDomainObjectContainer<T>.creating(configuration: T.() -> Unit): NamedDomainObjectContainerCreatingDelegateProvider<T>(source)
Provides a property delegate that creates elements of the default collection type with the given configuration.
val myElement by myContainer.creating { myProperty = 42 }
fun <T : Any, U : T> PolymorphicDomainObjectContainer<T>.creating(type: KClass<U>): PolymorphicDomainObjectContainerCreatingDelegateProvider<T, U>(source)
Provides a property delegate that creates elements of the given type.
fun <T : Any, U : T> PolymorphicDomainObjectContainer<T>.creating(type: KClass<U>, configuration: U.() -> Unit): PolymorphicDomainObjectContainerCreatingDelegateProvider<T, U>(source)
Provides a property delegate that creates elements of the given type with the given configuration.
fun <T : Any, U : T> PolymorphicDomainObjectContainer<T>.creating(type: Class<U>, configuration: U.() -> Unit): PolymorphicDomainObjectContainerCreatingDelegateProvider<T, U>(source)
Provides a property delegate that creates elements of the given type expressed as a java.lang.Class with the given configuration.
val <T : Any> NamedDomainObjectContainer<T>.creating: NamedDomainObjectContainerCreatingDelegateProvider<T>(source)
Provides a property delegate that creates elements of the default collection type.