java.lang.Object | |
↳ | com.microstrategy.web.app.ComponentInitializationContextImpl |
This class implements the ComponentInitializationContext
interface.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ComponentInitializationContextImpl() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
boolean |
containsComponent(String name, String beanType)
This method returns true if a bean with the given name and type has
already beencreated.
| ||||||||||
WebComponent |
getComponent(String name, String beanType)
Returns a webComponent if it has been created previously and matches
both name and type; null if the bean is not found.
| ||||||||||
void |
storeComponent(WebComponent webComponent, String beanType)
This method stores in the context object a WebComponent instance.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
This method returns true if a bean with the given name and type has already beencreated.
name | The name given to the bean |
---|---|
beanType | The bean's type name (ex: "ReportBean"). |
Returns a webComponent if it has been created previously and matches both name and type; null if the bean is not found.
name | The name given to the bean |
---|---|
beanType | The bean's type name (ex: "ReportBean"). |
WebComponent
instance if the bean exists.This method stores in the context object a WebComponent instance.
webComponent | the WebComponent instance to store. |
---|---|
beanType | The bean's type name (ex: "ReportBean"). |