Adding Several Leaves
From Apache OpenOffice Wiki
< Documentation | DevGuide
It may be necessary to add more then one leaf. This is easily done by just writing the next leaf definition after the previous:
<node oor:name="Nodes">
<node oor:name="Writer" oor:op="fuse">
<node oor:name="Leaves">
<node oor:name="oorg.openoffice.framework.desktop.test.deployment.options.leaves3.Writer.3"
oor:op="fuse">
<!-- leaving out the properties for the sake of brevity -->
</node>
<node oor:name="org.openoffice.framework.desktop.test.deployment.options.leaves3.Writer.1"
oor:op="fuse">
<!-- leaving out the properties for the sake of brevity -->
</node>
<node oor:name="org.openoffice.framework.desktop.test.deployment.options.leaves3.Writer.2"
oor:op="fuse">
</node>
</node>
</node>
<node oor:name="Calc" oor:op="fuse">
<node oor:name="Leaves">
<node oor:name="org.openoffice.framework.desktop.test.deployment.options.leaves3.Calc.3"
oor:op="fuse">
<!-- leaving out the properties for the sake of brevity -->
</node>
<node oor:name="org.openoffice.framework.desktop.test.deployment.options.leaves3.Calc.1"
oor:op="fuse">
<!-- leaving out the properties for the sake of brevity -->
</node>
<node oor:name="org.openoffice.framework.desktop.test.deployment.options.leaves3.Calc.2"
oor:op="fuse">
<!-- leaving out the properties for the sake of brevity -->
</node>
</node>
</node>
</node>
In the example we have also added three other Leafs to the Calc Node.
Content on this page is licensed under the Public Documentation License (PDL). |