| author | Robert von Massow | 2011-03-02 10:26:49 (EST) |
|---|---|---|
| committer | sefftinge | 2011-03-02 11:46:55 (EST) |
| commit | 545f947ff427fc04c54f32122c599e7e31bb556f (patch) (side-by-side diff) | |
| tree | 7fd7b789e61e2de3941ba33a3d3e970d9b45af49 | |
| parent | 0e36117a21cf08a1a71c5286fd9d954e1a58fe52 (diff) | |
| download | org.eclipse.xtext-545f947ff427fc04c54f32122c599e7e31bb556f.zip org.eclipse.xtext-545f947ff427fc04c54f32122c599e7e31bb556f.tar.gz org.eclipse.xtext-545f947ff427fc04c54f32122c599e7e31bb556f.tar.bz2 | |
New class wizard plugin.xml
| -rw-r--r-- | plugins/org.eclipse.xtext.xtend2.ui/plugin.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/plugins/org.eclipse.xtext.xtend2.ui/plugin.xml b/plugins/org.eclipse.xtext.xtend2.ui/plugin.xml index 9329e2b..f87e510 100644 --- a/plugins/org.eclipse.xtext.xtend2.ui/plugin.xml +++ b/plugins/org.eclipse.xtext.xtend2.ui/plugin.xml @@ -309,4 +309,46 @@ </part> </actionSetPartAssociation> </extension> + <extension + id="org.eclipse.xtext.xtend2.ui.wizard" + name="newXtend2Class" + point="org.eclipse.ui.newWizards"> + <category + id="org.eclipse.xtext.xtend2.ui.wizards" + name="Xtend"> + </category> + <wizard + category="org.eclipse.xtext.xtend2.ui.wizards" + id="org.eclipse.xtext.xtend2.ui.wizards.NewXtend2ClassWizard" + name="Xtend Class"> + <class class="org.eclipse.xtext.xtend2.ui.Xtend2ExecutableExtensionFactory"> + <parameter name="javatype" value="true" /> + <parameter name="guicekey" value="org.eclipse.xtext.xtend2.ui.wizards.NewXtend2ClassWizard" /> + </class> + </wizard> + <primaryWizard + id="org.eclipse.xtext.xtend2.ui.wizards.NewXtend2ClassWizard"> + </primaryWizard> + </extension> + <extension + point="org.eclipse.ui.perspectiveExtensions"> + <perspectiveExtension + targetID="org.eclipse.jdt.ui.JavaPerspective"> + <newWizardShortcut + id="org.eclipse.xtext.xtend2.ui.wizards.NewXtend2ClassWizard"> + </newWizardShortcut> + </perspectiveExtension> + <perspectiveExtension + targetID="org.eclipse.jdt.ui.JavaBrowsingPerspective"> + <newWizardShortcut + id="org.eclipse.xtext.xtend2.ui.wizards.NewXtend2ClassWizard"> + </newWizardShortcut> + </perspectiveExtension> + <perspectiveExtension + targetID="org.eclipse.pde.ui.PDEPerspective"> + <newWizardShortcut + id="org.eclipse.xtext.xtend2.ui.wizards.NewXtend2ClassWizard"> + </newWizardShortcut> + </perspectiveExtension> + </extension> </plugin> |

