Interface to be implemented by objects that are factories for other
objects. When this object is requested from the container, it will not
be returned itself, but the object it creates will be returned.
Factory objects are ideal for extending the core IoC container with
custom initialization objects.
isSingleton:Boolean [read-only]
Returns if this factory object is a singleton or not. If it is
a singleton, it will return a new instance of the object it
creates on each getObject() call. Else, the same object will be
returned.
Implementation
public function get isSingleton():Boolean
public function getObject():*
Returns
public function getObjectType():Class
Returns
Prana Framework 0.5 - 2008