I just want to add a new entry in New category as a child when right-clicking on any XML file. My plugin.xml file is as follows,
<plugin>
<extension point="org.eclipse.ui.popupMenus">
<objectContribution objectClass="org.eclipse.core.resources.IFile"
id="org.example.NewProject"
nameFilter="*.xml">
<action
label="New Fun Project"
icon="icons/sample.png"
class="org.example.TestFunAction"
id="org.example.NewProject">
</action>
</objectContribution>
</extension>
</plugin>
currently New Fun Project entry has appeared in right-click menu and I want to add it under New category now. How can I move this to RightClick>New>New Fun Project?