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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<?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>
|