Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0ded006ce95ef0b255027ce306d0481dc8431f62 (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
<?xml version="1.0" encoding="UTF-8"?>
<!--
/*******************************************************************************
 * Copyright (c) 2008 E.D.Willink and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   E.D.Willink - Initial API and implementation
 *******************************************************************************/
-->
<?eclipse version="3.0"?>
<plugin>
   <extension point="org.eclipse.ui.newWizards">
      <category id="org.eclipse.qvtd.examples.category"
            name="%QVT_category"
            parentCategory="org.eclipse.ui.Examples"/>
      <wizard id="org.eclipse.qvtd.examples.qvtcore.empty"           
            canFinishEarly="true"
            category="org.eclipse.ui.Examples/org.eclipse.qvtd.examples.category"
            class="org.eclipse.qvtd.examples.qvtc.wizards.EmptyExampleWizard"
            hasPages="false"
            project="true"
            name="%EmptyQVTc_name"
            icon="$nl$/icons/QVTcModelFile.gif">
         <description>%EmptyQVTc_description</description>
      </wizard>
      <wizard id="org.eclipse.qvtd.examples.qvtrelation.empty"           
            canFinishEarly="true"
            category="org.eclipse.ui.Examples/org.eclipse.qvtd.examples.category"
            class="org.eclipse.qvtd.examples.qvtr.wizards.EmptyExampleWizard"
            hasPages="false"
            project="true"
            name="%EmptyQVTr_name"
            icon="$nl$/icons/QVTrModelFile.gif">
         <description>%EmptyQVTr_description</description>
      </wizard>
      <wizard id="org.eclipse.qvtd.examples.qvtrelation.modelmorf"           
            canFinishEarly="true"
            category="org.eclipse.ui.Examples/org.eclipse.qvtd.examples.category"
            class="org.eclipse.qvtd.examples.qvtr.wizards.ModelMorfExampleWizard"
            hasPages="false"
            project="true"
            name="%ModelMorf_name"
            icon="$nl$/icons/QVTrModelFile.gif">
         <description>%ModelMorf_description</description>
      </wizard>
      <wizard id="org.eclipse.qvtd.examples.qvtrelation.reltocore"           
            canFinishEarly="true"
            category="org.eclipse.ui.Examples/org.eclipse.qvtd.examples.category"
            class="org.eclipse.qvtd.examples.qvtr.wizards.RelToCoreExampleWizard"
            hasPages="false"
            project="true"
            name="%RelToCore_name"
            icon="$nl$/icons/QVTrModelFile.gif">
         <description>%RelToCore_description</description>
      </wizard>
   </extension>

   <extension
         point="org.eclipse.ui.intro.configExtension">
      <configExtension
            content="intro/sample.xml"
            configId="org.eclipse.ui.intro.universalConfig">
      </configExtension>
   </extension>
</plugin>

Back to the top