This is my plugin.xml
<plugin>
<extension point="org.eclipse.ui.newWizards">
<category
id="root"
name="Root Category">
</category>
<category
id="first_subcategory"
name="Sub Category"
parentCategory="root">
</category>
<wizard
id="first_leaf_of_subcategory"
name="Wizard of First Subcategory"
category="root/first_subcategory"
icon="./icons/sample.gif"
class="com.myplugin.WizFirstSubCategory"
project="true"
>
<description>
Create a simple wizard of First Subcategory
</description>
</wizard>
</extension>
</plugin>
Whe I run My plugin as Eclipse Application I don’t find the three that I wrote.
I want “New–>Project” open wizard that have inside “Root Category–>Sub Category–>Wizard of First Subcategory” but doesn’t work
If I delete Subcategory and reference first_leaf_of_subcategory directly at root plugin works if i insert a subcategory doesn’t works.
I read documentation Here
Thanks
finally this tree works for me.