Interface Instantiator
-
public interface Instantiator
An object that can instantiate a component. This is now largely a wrapper aroundClassInstantiator
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComponentModel
getModel()
Returns the model that defines the behavior of the component.Component
newInstance(InternalComponentResources resources)
Instantiates and returns a new instance of the desired class.
-
-
-
Method Detail
-
newInstance
Component newInstance(InternalComponentResources resources)
Instantiates and returns a new instance of the desired class. Component classes are always modified so that they implementComponent
(and often, other interfaces as well). The resources are made available in theInstanceContext
as bothComponentResources
andInternalComponentResources
.
-
getModel
ComponentModel getModel()
Returns the model that defines the behavior of the component.
-
-