Interface Factory

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

interface Factory(T) ;

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

Methods

NameDescription
factoryInstantiates component of type T.
typeGet the type info of T that is created.