source: trunk/modelicaml/org.openmodelica.modelicaml.view.componentstree/plugin.xml @ 1545

Last change on this file since 1545 was 1545, checked in by wschamai, 12 years ago

MOD: marker type name

File size: 3.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<?eclipse version="3.4"?>
3<plugin>
4
5   <extension
6         point="org.eclipse.ui.views">
7      <view
8            category="org.openmodelica.modelicaml.gen.modelica.category1"
9            class="org.openmodelica.modelicaml.view.componentstree.views.ComponentsTree"
10            icon="icons/tree.png"
11            id="org.openmodelica.modelicaml.view.componentstree"
12            name="Class Components Tree">
13      </view>
14   </extension>
15    <extension
16         point="org.eclipse.ui.views.properties.tabbed.propertyContributor">
17      <propertyContributor
18            contributorId="org.openmodelica.modelicaml.view.componentstree"
19            labelProvider="org.openmodelica.modelicaml.view.componentstree.sections.LabelProviderDetails">
20         <propertyCategory
21               category="componentsTree"></propertyCategory>
22      </propertyContributor>
23   </extension>
24   <extension
25         point="org.eclipse.ui.views.properties.tabbed.propertyTabs">
26      <propertyTabs
27            contributorId="org.openmodelica.modelicaml.view.componentstree">
28         <propertyTab
29               category="componentsTree"
30               id="org.openmodelica.modelicaml.view.componentstree.properties.tab.details"
31               indented="true"
32               label="Details">
33         </propertyTab>
34         <propertyTab
35               afterTab="org.openmodelica.modelicaml.view.componentstree.properties.tab.details"
36               category="componentsTree"
37               id="org.openmodelica.modelicaml.view.componentstree.properties.tab.comments"
38               indented="true"
39               label="Comments">
40         </propertyTab>
41      </propertyTabs>
42   </extension>
43   <extension
44         point="org.eclipse.ui.views.properties.tabbed.propertySections">
45      <propertySections
46            contributorId="org.openmodelica.modelicaml.view.componentstree">
47         <propertySection
48               class="org.openmodelica.modelicaml.view.componentstree.sections.PropertySectionDetails"
49               id="org.openmodelica.modelicaml.view.componentstree.propertySection.details"
50               tab="org.openmodelica.modelicaml.view.componentstree.properties.tab.details">
51            <input
52                  type="org.openmodelica.modelicaml.common.instantiation.TreeObject">
53            </input>
54         </propertySection>
55         <propertySection
56               class="org.openmodelica.modelicaml.view.componentstree.sections.PropertySectionComments"
57               id="org.openmodelica.modelicaml.view.componentstree.propertySection.comments"
58               tab="org.openmodelica.modelicaml.view.componentstree.properties.tab.comments">
59            <input
60                  type="org.openmodelica.modelicaml.common.instantiation.TreeObject">
61            </input>
62         </propertySection>
63      </propertySections>
64   </extension>
65   <extension
66         id="org.openmodelica.modelicaml.marker.actionCode.componentmodification"
67         name="ModelicaML Component Modifications Validation"
68         point="org.eclipse.core.resources.markers">
69      <super
70            type="org.eclipse.emf.ecore.diagnostic">
71      </super>
72      <super
73            type="org.eclipse.core.resources.marker">
74      </super>
75      <persistent
76            value="true">
77      </persistent>
78      <attribute
79            name="generatedBy">
80      </attribute>
81   </extension>
82</plugin>
Note: See TracBrowser for help on using the repository browser.