Difference between revisions of "Documentation/DevGuide/Extensions/Adding Several Nodes"
From Apache OpenOffice Wiki
< Documentation | DevGuide
m (1 revision(s)) |
(FINAL VERSION FOR L10N) |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 5: | Line 5: | ||
|NextPage=Documentation/DevGuide/Extensions/Absolute Position of Leaves | |NextPage=Documentation/DevGuide/Extensions/Absolute Position of Leaves | ||
}} | }} | ||
+ | {{Documentation/DevGuideLanguages|Documentation/DevGuide/Extensions/{{SUBPAGENAME}}}} | ||
{{DISPLAYTITLE:Adding Several Nodes}} | {{DISPLAYTITLE:Adding Several Nodes}} | ||
As one might have imagined, adding several nodes is similar to adding various leaves. The definitions are just written one after the other: | As one might have imagined, adding several nodes is similar to adding various leaves. The definitions are just written one after the other: | ||
− | + | <source lang="xml"> | |
− | + | <node oor:name="Nodes"> | |
<node oor:name="org.openoffice.framework.desktop.test.deployment.options.nodes2.node 3" | <node oor:name="org.openoffice.framework.desktop.test.deployment.options.nodes2.node 3" | ||
oor:op="fuse"> | oor:op="fuse"> | ||
Line 21: | Line 22: | ||
<!-- leaving out all properties and leaves for the sake of brevity --> | <!-- leaving out all properties and leaves for the sake of brevity --> | ||
</node> | </node> | ||
− | </node></ | + | </node> |
+ | </source> | ||
+ | {{PDL1}} | ||
− | + | [[Category:Documentation/Developer's Guide/Extensions]] | |
− | [[Category: Extensions]] |
Latest revision as of 10:16, 13 May 2009
As one might have imagined, adding several nodes is similar to adding various leaves. The definitions are just written one after the other:
<node oor:name="Nodes">
<node oor:name="org.openoffice.framework.desktop.test.deployment.options.nodes2.node 3"
oor:op="fuse">
<!-- leaving out all properties and leaves for the sake of brevity -->
</node>
<node oor:name="oorg.openoffice.framework.desktop.test.deployment.options.nodes2.node 1"
oor:op="fuse">
<!-- leaving out all properties and leaves for the sake of brevity -->
</node>
<node oor:name="org.openoffice.framework.desktop.test.deployment.options.nodes2.node 2"
oor:op="fuse">
<!-- leaving out all properties and leaves for the sake of brevity -->
</node>
</node>
Content on this page is licensed under the Public Documentation License (PDL). |