Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse Platform » new project wizard
new project wizard [message #327674] Mon, 28 April 2008 18:41 Go to next message
David Boxer is currently offline David BoxerFriend
Messages: 19
Registered: July 2009
Junior Member
I have a wizard to make a new X project and now I want it to show up when I
right-click in Project Explorer and select the New submenu. I am able to get
it to show up there, but I want it to show up in the same group as the
'Project...' item (similar to how the new Java project shortcut in JDT shows
up there). I think all I need is the correct menuGroupId to make this
happen, but I cannot find what that is.

Does anyone know where I can find that information?

Thanks,
David
Re: new project wizard [message #327746 is a reply to message #327674] Wed, 30 April 2008 08:02 Go to previous message
Eclipse UserFriend
Originally posted by: automatic.javalobby.org

Hi David

Have a look at the extension point "perspectiveExtensions". Here is a snippet if you want to extend the standard resource perspective:
   <extension point="org.eclipse.ui.perspectiveExtensions">
      <perspectiveExtension targetID="org.eclipse.ui.resourcePerspective">
         <newWizardShortcut id="com.test.wizards.SampleNewWizard"/>
      </perspectiveExtension>
   </extension>

If it does not show up, resetting the perspective does normally help.

Cheers, Stephan
Previous Topic:Drop Down Tree View
Next Topic:Assertin failed for editor.
Goto Forum:
  


Current Time: Sat Jul 27 12:49:56 GMT 2024

Powered by FUDForum. Page generated in 0.03102 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top