Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Rich Client Platform (RCP) » standalone RCP how to remove eclipse ide things?
standalone RCP how to remove eclipse ide things? [message #896476] Wed, 18 July 2012 13:43 Go to next message
Mat Mathiew is currently offline Mat MathiewFriend
Messages: 29
Registered: July 2012
Junior Member
Hi,

I am developing an RCP application.

I want the user to be able to follow a wizard to create a new project.

I have extended the org.eclipse.ui.newWizards and a I have a category and a wizard.

My wizard from the generated code :

public class CustomNewProjectWizard extends Wizard implements INewWizard


But when I press CTRL+N to create a new project I get all the standard eclipse wizards and project creation e.g. New Java Project etc along with my own wizard.

What have I done wrong? I only need to have my own wizard not eclipse IDE ones.

Thanks
Re: standalone RCP how to remove eclipse ide things? [message #896478 is a reply to message #896476] Wed, 18 July 2012 13:50 Go to previous messageGo to next message
Joseph Carroll is currently offline Joseph CarrollFriend
Messages: 174
Registered: May 2012
Location: Milwaukee, WI
Senior Member

Check your target and launch configurations. It sounds like you are targeting the entire workspace and not just the RCP components.

JD
Re: standalone RCP how to remove eclipse ide things? [message #896484 is a reply to message #896478] Wed, 18 July 2012 13:57 Go to previous messageGo to next message
Mat Mathiew is currently offline Mat MathiewFriend
Messages: 29
Registered: July 2012
Junior Member
I have the following required bundles in my rcp plugin:

org.eclipse.ui.ide;bundle-version="3.7.0",
org.eclipse.core.resources,
org.eclipse.ui.navigator,
org.eclipse.ui.views.properties.tabbed;bundle-version="3.5.200",
org.eclipse.core.runtime;bundle-version="3.7.0"

Is there something that shouldn't be?
Re: standalone RCP how to remove eclipse ide things? [message #896487 is a reply to message #896484] Wed, 18 July 2012 14:00 Go to previous messageGo to next message
Jan Krakora is currently offline Jan KrakoraFriend
Messages: 477
Registered: December 2009
Location: Prague
Senior Member
org.eclipse.ui.ide I guess
Re: standalone RCP how to remove eclipse ide things? [message #896492 is a reply to message #896484] Wed, 18 July 2012 14:07 Go to previous messageGo to next message
Joseph Carroll is currently offline Joseph CarrollFriend
Messages: 174
Registered: May 2012
Location: Milwaukee, WI
Senior Member

Check this tutorial:
http://www.vogella.com/articles/Eclipse3RCP/article.html#runconfiguration_problems

The issue isn't the specific bundle, it's how you run the application. If you are trying to create your own wizard, you should be defining your own menu contributions and commands that launch the wizard. You might also want to look at:
http://www.vogella.com/articles/EclipseCommands/article.html
Re: standalone RCP how to remove eclipse ide things? [message #896611 is a reply to message #896484] Thu, 19 July 2012 07:16 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
The require stuff doesn't matter - the imporant thing is what is in your
launch configuration. If you see JavaProject in your wizard you have
e.g. jdt.ui in your launch config.

Tom

Am 18.07.12 15:57, schrieb Mat Mathiew:
> I have the following required bundles in my rcp plugin:
>
> org.eclipse.ui.ide;bundle-version="3.7.0",
> org.eclipse.core.resources,
> org.eclipse.ui.navigator,
> org.eclipse.ui.views.properties.tabbed;bundle-version="3.5.200",
> org.eclipse.core.runtime;bundle-version="3.7.0"
>
> Is there something that shouldn't be?
Re: standalone RCP how to remove eclipse ide things? [message #896651 is a reply to message #896476] Thu, 19 July 2012 09:49 Go to previous message
Mat Mathiew is currently offline Mat MathiewFriend
Messages: 29
Registered: July 2012
Junior Member
Thanks everyone I created a new product for my plugin and now its almost ok!

In the new wizard dialog i can see only my wizard and a general :

MyWizardFolder
MyWizard
General
File
Folder
Project
Untitled Text File

Is there any way to remove the General also? Is it again an issue with my configuration?

Can I edit in some way the wizard dialog to configure its content?

[Updated on: Thu, 19 July 2012 09:49]

Report message to a moderator

Previous Topic:execute many times Progress bar show error
Next Topic:How to open console and problems view while running a job
Goto Forum:
  


Current Time: Tue Mar 19 05:32:51 GMT 2024

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

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

Back to the top