org.eclipse.ui.views/plugin.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.27 - (download) (as text) (annotate)
Mon Mar 9 19:16:49 2009 UTC (8 months, 2 weeks ago) by bbokowski
Branch: MAIN
CVS Tags: M20090826-0800, I20090525-2000, I20090505-2000, I20090504-2000, I20090309-1800, I20090914-0830, R3_5, I20090421-0800, R3_5_1, I20090520-2000, I20090901-0800, I20090406-0800, HEAD
Branch point for: R3_5_maintenance
Changes since 1.26: +33 -3 lines
Bug 248103 [PropertiesView] Multi-instance Properties View
<?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.gif"
            id="org.eclipse.ui.views.PropertySheet"
            name="%Views.PropertySheet">
      </view>
      <view
            name="%Views.ContentOutline"
            icon="$nl$/icons/full/eview16/outline_co.gif"
            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.gif"
				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.gif"
           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>