org.eclipse.ui.examples.views.properties.tabbed/org.eclipse.ui.examples.views.properties.tabbed.article/plugin.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.5 - (download) (as text) (annotate)
Wed Oct 15 14:56:19 2008 UTC (13 months, 1 week ago) by ahunter
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +2 -2 lines
Bug 250959 - [TabbedProperties] Article plug-in has compile error
<?xml version="1.0" encoding="UTF-8"?>
<plugin>

     <extension
         point="org.eclipse.ui.views">
      <category
            name="%Views.category.name"
            id="org.eclipse.ui.views.properties.tabbed">
      </category>
      <view
            name="%Views.example.name"
            category="org.eclipse.ui.views.properties.tabbed"
            icon="icons/sample.gif"
            class="org.eclipse.ui.examples.views.properties.tabbed.article.views.SampleView"
            id="org.eclipse.ui.examples.views.properties.tabbed.article.views.SampleView">
      </view>
   </extension>
   <extension
         point="org.eclipse.ui.views.properties.tabbed.propertyContributor">
      <propertyContributor contributorId="org.eclipse.ui.examples.views.properties.tabbed.article.views.SampleView">
         <propertyCategory category="sample"/>
      </propertyContributor>
   </extension>
   <extension
         point="org.eclipse.ui.views.properties.tabbed.propertyTabs">
      <propertyTabs contributorId="org.eclipse.ui.examples.views.properties.tabbed.article.views.SampleView">
         <propertyTab
               category="sample"
               id="ButtonTab"
               label="%propertyTabs.Button.label"/>
         <propertyTab
               afterTab="ButtonTab"
               category="sample"
               id="AdvancedTab"
               label="%propertyTabs.Advanced.label"/>
      </propertyTabs>
   </extension>
   <extension
         point="org.eclipse.ui.views.properties.tabbed.propertySections">
      <propertySections contributorId="org.eclipse.ui.examples.views.properties.tabbed.article.views.SampleView">
         <propertySection
               class="org.eclipse.ui.examples.views.properties.tabbed.article.views.LabelSection"
               id="LabelSection"
               tab="ButtonTab">
            <input type="org.eclipse.ui.examples.views.properties.tabbed.article.views.ButtonElement"/>
         </propertySection>
         <propertySection
               afterSection="LabelSection"
               class="org.eclipse.ui.examples.views.properties.tabbed.article.views.SizeSection"
               id="SizeSection"
               tab="ButtonTab">
            <input type="org.eclipse.ui.examples.views.properties.tabbed.article.views.ButtonElement"/>
         </propertySection>
         <propertySection
               class="org.eclipse.ui.views.properties.tabbed.AdvancedPropertySection"
               id="AdvancedSection"
               tab="AdvancedTab">
            <input type="org.eclipse.ui.examples.views.properties.tabbed.article.views.ButtonElement"/>
         </propertySection>
         <propertySection
               afterSection="SizeSection"
               class="org.eclipse.ui.examples.views.properties.tabbed.article.views.FontSection"
               id="FontSection"
               tab="ButtonTab">
            <input type="org.eclipse.ui.examples.views.properties.tabbed.article.views.ButtonElement"/>
         </propertySection>
      </propertySections>
   </extension>

</plugin>