Tree Layouts
Identifier:
com.ps.consul.eclipse.ui.TreeLayouts
Since:
2.5.2
Description:
The Tree Layouts are directly accessable via context menu.
A layout named Default is initially loaded. There is a fixed Default Layout, when no Default layout is registered.
Configuration Markup:
<!ELEMENT extension (treelayout)+>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
Extension point for additional tree layouts.
<!ELEMENT treelayout EMPTY>
<!ATTLIST treelayout
name CDATA #REQUIRED
items CDATA #REQUIRED
modeltype CDATA #REQUIRED>
An additional tree layout.
- name - Name to display the tree layout.
- items - The items attribute has to be a comma separated list of items to show in the tree.
For instance: restrictions,relations,constraints,attributes and inherited_attributes are reserved items to switch visibility.
"attribute:name" is an item, defining the attribute with name 'name' to HIDE! analogous may be specified the item "relation:name".
- modeltype - The model type where this layout is shown
Examples:
<treelayout name="[the name to display for the tree layout]"
items="[see below for explanation]"
modeltype="[the model type where this layout is shown]">
</treelayout>