org.eclipse.ui.tutorials.rcp.part2/plugin.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (download) (as text) (annotate)
Fri Jul 21 17:02:41 2006 UTC (3 years, 4 months ago) by ebb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +13 -21 lines
Bug 134394: Update RCP tutorial code to match articles. This involved refreshing the projects with the contents of the zip files that came with the articles.
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>

   <extension
         id="application"
         point="org.eclipse.core.runtime.applications">
      <application>
         <run
               class="org.eclipse.ui.tutorials.rcp.part2.Application">
         </run>
      </application>
   </extension>
   <extension
         point="org.eclipse.ui.perspectives">
      <perspective
            name="Part2 Perspective"
            class="org.eclipse.ui.tutorials.rcp.part2.Perspective"
            id="org.eclipse.ui.tutorials.rcp.part2.perspective">
      </perspective>
   </extension>
   <extension
         id="product"
         point="org.eclipse.core.runtime.products">
      <product
            application="org.eclipse.ui.tutorials.rcp.part2.application"
            name="RCP Tutorial 2"/>
   </extension>

</plugin>