api / org.gradle.platform.base / PlatformContainer

PlatformContainer

@Incubating interface PlatformContainer : ExtensiblePolymorphicDomainObjectContainer<Platform>

A container of Platforms.

Inherited Functions

registerBinding

abstract fun <U : T> registerBinding(type: Class<U>, implementationType: Class<out U>): Unit

Registers a binding from the specified "public" domain object type to the specified implementation type. Whenever the container is asked to create an element with the binding's public type, it will instantiate the binding's implementation type. If the implementation type has a constructor annotated with javax.inject.Inject, its arguments will be injected.

In general, registering a binding is preferable over implementing and registering a factory.

registerFactory

abstract fun <U : T> registerFactory(type: Class<U>, factory: NamedDomainObjectFactory<out U>): Unit
abstract fun <U : T> registerFactory(type: Class<U>, factory: Closure<out U>): Unit

Registers a factory for creating elements of the specified type. Typically, the specified type is an interface type.

Extension Properties

ext

val PlatformContainer.ext: ExtraPropertiesExtension

Retrieves the ext extension.

Extension Functions

ext

fun PlatformContainer.ext(configure: ExtraPropertiesExtension.() -> Unit): Unit

Configures the ext extension.