Factory

Interface for objects able to create some instance of type T.

Intent of this interface is to provide a single entry for objects, able to instantiate something.

interface Factory : LocatorAware!()(
T
) {}

Members

Functions

factory
T factory()

Instantiates something of type T.

Properties

type
TypeInfo type [@property getter]

Get the type info of T that is created.

Meta