api / org.gradle.api / ExtensiblePolymorphicDomainObjectContainer / registerBinding

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.

Parameters

type - a public domain object type

implementationType - the corresponding implementation type

- a public domain object type