Salut,
Je débute avec les plug-in Eclipse et je veux accéder à mes wizards depuis File > New > Project
Pour le moment j'ai réussi à ajouter une nouvelle catégorie mais accessible depuis File > New > Other, en utilisant le template d'Eclipse New File WizardVoici le contenu de mon plugin.xmlThis template creates a wizard that can create a new file in the workspace.To test the wizard, select File, New then Other... from the menu bar. When the master wizard opens, select the created category and the new wizard registered for that category.
Comment puis-je changer ceci pour accéder à mes wizards depuis File > New > Project >GWT Screens >...
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 <?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.4"?> <plugin> <extension point="org.eclipse.ui.newWizards"> <category name="GWT Screens" id="azaz"> </category> <wizard name="Simple GWT Screen from table" icon="icons/sample.gif" category="azaz" class="azaz.wizards.SampleNewWizard" id="azaz.wizards.SampleNewWizard"> </wizard> </extension> </plugin>
et non pas File > New > others > GWT Screens >... ?
Merci d'avance
Partager