Hello,
I need to ovveride a behavior class in docuemntum 6.5.
Coming for documentum 5.2.5 I used to extend all config files. In the documentation, it says to use replace path to override elements.
So I customized the menubar jsp and my new component xml file successfully loads my custom jsp.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<config>
<scope>
<component modifies="menubar:webtop/config/menubar_component.xml">
<replace path="pages.start">
<start>/custom/menubar/menubar.jsp</start>
</replace></component>
</scope>
</config>
My question is:
If I want to ovverride the component class itself (the java file MenuBar.java) do I add another "replace path" with the path to my new java file in the same xml file? or do I have to create a new config file in addition to this one?
An example for replacing two elements (the jsp and the java file would be helpful.)
Thanks!