Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d9d530745f0b3b0ee40c6a70162e877532e1b0d9 (plain) (blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
   <extension
         point="org.eclipse.ui.preferencePages">
      <page
            class="org.eclipse.papyrus.infra.gmfdiag.preferences.pages.internal.PapyrusUML2PreferencePage"
            id="org.eclipse.papyrus.infra.core.sasheditor.preferences.generalcategory"
            name="Papyrus">
      </page>
      <page
            category="org.eclipse.papyrus.infra.core.sasheditor.preferences.generalcategory"
            class="org.eclipse.papyrus.infra.gmfdiag.preferences.pages.PapyrusAllDiagramsPreferencePage"
            id="org.eclipse.papyrus.infra.gmfdiag.preferences.diagrams"
            name="Diagrams">
      </page>
      <page
            category="org.eclipse.papyrus.infra.core.sasheditor.preferences.generalcategory"
            class="org.eclipse.papyrus.infra.gmfdiag.preferences.pages.internal.PapyrusPrintingPreferencePage"
            id="org.eclipse.papyrus.infra.gmfdiag.preferences.printing"
            name="Printing">
      </page>
      <page
            category="org.eclipse.papyrus.infra.core.sasheditor.preferences.generalcategory"
            class="org.eclipse.papyrus.infra.gmfdiag.preferences.pages.internal.PapyrusPathmapsPreferencePage"
            id="org.eclipse.papyrus.infra.gmfdiag.preferences.pathmaps"
            name="Pathmaps">
      </page>
   </extension>
   <extension
         point="org.eclipse.ui.propertyPages">
      <page
            class="org.eclipse.papyrus.infra.gmfdiag.preferences.pages.internal.PapyrusUML2PreferencePage"
            id="org.eclipse.papyrus.infra.gmfdiag.preferences.properties.generalcategory"
            name="Papyrus">
         <enabledWhen>
            <adapt
                  type="org.eclipse.core.resources.IProject">
            </adapt>
         </enabledWhen>
      </page>
      <page
            category="org.eclipse.papyrus.infra.gmfdiag.preferences.properties.generalcategory"
            class="org.eclipse.papyrus.infra.gmfdiag.preferences.pages.PapyrusAllDiagramsPreferencePage"
            id="org.eclipse.papyrus.infra.gmfdiag.preferences.pages.internal.PapyrusAllDiagramsPreferencePage"
            name="Diagrams">
         <enabledWhen>
            <adapt
                  type="org.eclipse.core.resources.IProject">
            </adapt>
         </enabledWhen>
      </page>
      <page
            category="org.eclipse.papyrus.infra.gmfdiag.preferences.properties.generalcategory"
            class="org.eclipse.papyrus.infra.gmfdiag.preferences.pages.internal.PapyrusPrintingPreferencePage"
            id="org.eclipse.papyrus.infra.gmfdiag.preferences.properties.printing"
            name="Printing">
         <enabledWhen>
            <adapt
                  type="org.eclipse.core.resources.IProject">
            </adapt>
         </enabledWhen>
      </page>
      <page
            category="org.eclipse.papyrus.infra.gmfdiag.preferences.properties.generalcategory"
            class="org.eclipse.papyrus.infra.gmfdiag.preferences.pages.internal.PapyrusPathmapsPreferencePage"
            id="org.eclipse.papyrus.infra.gmfdiag.preferences.properties.pathmaps"
            name="Pathmaps">
         <enabledWhen>
            <adapt
                  type="org.eclipse.core.resources.IProject">
            </adapt>
         </enabledWhen>
      </page>
   </extension>
   <extension
         point="org.eclipse.core.runtime.preferences">
      <initializer
            class="org.eclipse.papyrus.infra.gmfdiag.preferences.PapyrusPreferenceInitializer">
      </initializer>
   </extension>

</plugin>

Back to the top