Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 16f8aa4ab65bf97fcebb14470c5021a50ac87980 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>

   <extension
         point="org.eclipse.ui.editors">
      <editor
            name="Sash Windows Simple Editor"
            extensions="simpleEditor"
            icon="icons/sample.gif"
            contributorClass="org.eclipse.papyrus.example.core.sashwindows.simpleeditor.editors.MultiPageEditorContributor"
            class="org.eclipse.papyrus.example.core.sashwindows.simpleeditor.editors.SimpleTextMultiPageEditor"
            id="org.eclipse.papyrus.example.sashwindows.SimpleEditor">
      </editor>
   </extension>
   <extension
         point="org.eclipse.ui.newWizards">
          <!-- @generated NOT -->
      <wizard
            name="%wizardSash"
            icon="icons/sample.gif"
            category="org.eclipse.papyrus.wizards.category/org.eclipse.papyrus.examples"
            class="org.eclipse.papyrus.example.core.sashwindows.simpleeditor.wizards.MultiPageEditorNewWizard"
            id="org.eclipse.papyrus.example.sashwindows.wizards.SimpleEditor">
      </wizard>
   </extension>

</plugin>

Back to the top