Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [pde-dev] Top level "NEW" menu item?

This one adds under a new <category> which you specify and adds under new
project!
May be the same may apply for adding under File->New.

<extension
   		point="org.eclipse.ui.newWizards">	    
        <category
        	id="samplecategory"
        	name="sampleoption">
        </category>        
	    <wizard
	    	id="sample.tools.wizards"
	    	class="sample.tools.wizards.sampleWizard"	    	
	    	project="true"
	    	category="sampleCategory"
	    	hasPages="true"
	    	name = "sample Wizard">
	    	<selection class="org.eclipse.core.resources.IResource"/> 
	    </wizard>    
   </extension>
</plugin>

-----Original Message-----
From: pde-dev-bounces@xxxxxxxxxxx [mailto:pde-dev-bounces@xxxxxxxxxxx] On
Behalf Of Conte Zero
Sent: Monday, January 16, 2006 2:56 PM
To: Eclipse PDE general developers list.
Subject: [pde-dev] Top level "NEW" menu item?

Good day everyone,
I was wondering, once my perspective is set, how do I put my "New x 
file" wizards in File->New instead of File->New->Others etc.?

Thanks in advance
_______________________________________________
pde-dev mailing list
pde-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/pde-dev



Back to the top