-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
35 lines (35 loc) · 1.54 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension
point="org.eclipse.ui.newWizards">
<category
id="org.eclipse.imp.lpg.wizards.LPG"
parentCategory="org.eclipse.imp.wizards"
name="LPG"/>
<wizard
class="org.eclipse.imp.lpg.wizards.NewLPGGrammarWizard"
icon="icons/newgrammarfile.gif"
category="org.eclipse.imp.wizards/org.eclipse.imp.lpg.wizards.LPG"
name="LPG Grammar (non-IMP)"
id="org.eclipse.imp.lpg.NewLPGGrammarWizard"/>
<wizard
class="org.eclipse.imp.lpg.wizards.NewLPGGrammarForIMPWizard"
icon="icons/newgrammarfile.gif"
category="org.eclipse.imp.wizards/org.eclipse.imp.lpg.wizards.LPG"
name="LPG Grammar for IMP"
id="org.eclipse.imp.lpg.NewLPGGrammarForIMPWizard"/>
<wizard
class="org.eclipse.imp.lpg.wizards.NewParserWrapperWizard"
icon="icons/newgrammarfile.gif"
category="org.eclipse.imp.wizards/org.eclipse.imp.lpg.wizards.LPG"
name="Parser Wrapper for IMP"
id="org.eclipse.imp.lpg.NewParserWrapperWizard"/>
<wizard
class="org.eclipse.imp.lpg.wizards.NewLPGGrammarWithParserWrapperWizard"
icon="icons/newgrammarfile.gif"
category="org.eclipse.imp.wizards/org.eclipse.imp.lpg.wizards.LPG"
name="LPG Grammar with Parser Wrapper for IMP"
id="org.eclipse.imp.lpg.NewLPGGrammarParserWrapperWizard"/>
</extension>
</plugin>