I have a class that extends the IDEWorkbenchAdvisor class but I can not seem to find where this class is located. I pulled down the latest eclipse-rcp release to do some work on a project from a few years back and am only missing this class. All of the other eclipse dependencies are still in the eclipse packages except for the IDEWorkbenchAdvisor class. I can't find anything that says that this class has been deprecated or anything but it's not in the package that it is supposed to be in.
Can anyone give me a clue as to what happened to this class if it still exists and any ideas on how to load it into eclipse. Maybe there is a separate plugin that I can add to my eclipse build?
On 12.06.2012 22:39, Jon Cook wrote:
> I have a class that extends the IDEWorkbenchAdvisor class but I can
> not seem to find where this class is located. I pulled down the latest
> eclipse-rcp release to do some work on a project from a few years back
> and am only missing this class.
As the name of the class indicates it belongs to the IDE classes and
those aren't part of RCP. The class is located in the
'org.eclipse.ui.ide.application' plug-in which you e.g. get by
downloading the Eclipse SDK
(http://download.eclipse.org/eclipse/downloads/drops4/S-4.2RC4-201206081400/#EclipseSDK).
Alternatively, you might try to extend
'org.eclipse.ui.application.WorkbenchAdvisor' instead.
Dani
> All of the other eclipse dependencies are still in the eclipse
> packages except for the IDEWorkbenchAdvisor class. I can't find
> anything that says that this class has been deprecated or anything but
> it's not in the package that it is supposed to be in.
>
> Can anyone give me a clue as to what happened to this class if it
> still exists and any ideas on how to load it into eclipse. Maybe there
> is a separate plugin that I can add to my eclipse build?
>
> Thanks,
> Jon