1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<view
allowMultiple="true"
category="org.eclipse.ui"
class="org.eclipse.ui.views.properties.PropertySheet"
icon="$nl$/icons/full/eview16/prop_ps.png"
id="org.eclipse.ui.views.PropertySheet"
name="%Views.PropertySheet">
</view>
<view
name="%Views.ContentOutline"
icon="$nl$/icons/full/eview16/outline_co.png"
category="org.eclipse.ui"
class="org.eclipse.ui.views.contentoutline.ContentOutline"
id="org.eclipse.ui.views.ContentOutline">
</view>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:org.eclipse.ui.menus.showInMenu">
<command
commandId="org.eclipse.ui.views.properties.NewPropertySheetCommand"
icon="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.png"
label="%Views.PropertySheet"
style="push">
</command>
</menuContribution>
<menuContribution
locationURI="menu:org.eclipse.ui.views.PropertySheet">
<command
commandId="org.eclipse.ui.views.properties.NewPropertySheetCommand"
icon="icons/full/elcl16/new.png"
label="%Views.NewPropertySheet"
style="push">
</command>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="org.eclipse.ui.views.properties.NewPropertySheetHandler"
id="org.eclipse.ui.views.properties.NewPropertySheetCommand"
name="%Views.PropertySheet">
</command>
</extension>
</plugin>
|