Interface IPageBeanComponent
- All Superinterfaces:
IConfiguredByLayout,IDynamicContentBindingObject,IPageBean
- All Known Implementing Classes:
ComplexValueEditor,NullContentWrapper,PageBeanComponent,ROWComplexValueEditor
Interface to page bean components.
...all methods moved into the meantime to IPageBean because they are of general usage...
...all methods moved into the meantime to IPageBean because they are of general usage...
-
Method Summary
Modifier and TypeMethodDescriptionvoidinitializePageBean(Map<String, String> initData) Pass initialization parameters from JSP definition into the page bean.voidinitializePageBeanConfigItems(List<PageBeanConfigItem> configItems) Pass initialization configuration items from JSP definition into the page bean.voidTell page bean that the initialization is finished.voidinitializePageBeanPassComponent(IBaseComponent component) Pass the actual component that uses the page bean.voidTell page bean that the initialization is started.booleanCheck if page bean is already initialized.Methods inherited from interface org.eclnt.jsfserver.elements.IConfiguredByLayout
addConfiguredByLayoutListener, removeConfiguredByLayoutListenerMethods inherited from interface org.eclnt.jsfserver.pagebean.IPageBean
closePopup, getActualRootExpression, getPageModifier, getPageName, getRootExpressionUsedInPage, getStamp, onBeforeRendering, openModalPopup, openModelessPopup, setActualRootExpression
-
Method Details
-
initializePageBeanStarted
void initializePageBeanStarted()Tell page bean that the initialization is started. -
initializePageBeanPassComponent
Pass the actual component that uses the page bean. -
initializePageBean
Pass initialization parameters from JSP definition into the page bean. The values of attribute PAGEBEANINITDATA are passed as map of strings. -
initializePageBeanConfigItems
Pass initialization configuration items from JSP definition into the page bean. -
initializePageBeanFinished
void initializePageBeanFinished()Tell page bean that the initialization is finished. -
isInitialized
boolean isInitialized()Check if page bean is already initialized. If no then theinitializePageBean(Map)method will be called by the rendering processing.
-