oracle.portal.utils.xml.v1
Interface InitializableXMLObject
- All Known Implementing Classes:
- BaseManagedRenderer, JavaRenderer, RenderManager
- public interface InitializableXMLObject
The InitializableXMLObject interface is intended to allow an
application object created by a DefaultNodeHandler to expose
initialization and validation methods to be called at strategic points in
the building of the application object 'tree'.
|
Method Summary |
void |
postInitialize()
Performs any extra steps required to initialize and validate this
application object once its child application objects have been created. |
void |
preInitialize(java.lang.Object o)
Performs any steps required to initialize this application object after
it has been created, perhaps relating this object to its parent. |
preInitialize
public void preInitialize(java.lang.Object o)
throws NodeHandlerException
- Performs any steps required to initialize this application object after
it has been created, perhaps relating this object to its parent.
- Parameters:
o - the application object that will become this object's parent- Throws:
- NodeHandlerException - if an error occurs while initializing
this application object
postInitialize
public void postInitialize()
throws NodeHandlerException
- Performs any extra steps required to initialize and validate this
application object once its child application objects have been created.
- Throws:
- NodeHandlerException - if an error occurs while initializing or
validating this application object