org.eclipse.jdt.ui.wizards.NewClassWizardPage available on Linux, but not on the Mac?

Posted by Martin Cowie on Stack Overflow See other posts from Stack Overflow or by Martin Cowie
Published on 2011-01-06T12:50:32Z Indexed on 2011/01/06 12:53 UTC
Read the original article Hit count: 400

Filed under:
|

Most esteemed host of Eclipse magi ..

I am trying to create an instance of the org.eclipse.jdt.ui.wizards.NewClassWizardPage class. I have one project where I do this, and it will compile & run on Linux, but not on a Mac. Both machines are running the Helios edition of Eclipse with the PDE, both were downloaded with the last week.

The bundle org.eclipse.jdt.ui is available on the Mac, but for some reason the Mac will not compile the phrase

import org.eclipse.jdt.ui.wizards.NewClassWizardPage;

Saying "The import org.eclipse.jdt.ui.wizards.NewClassWizardPage cannot be resolved". The MANIFEST.MF is a simple one ..

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: RcpTest0
Bundle-SymbolicName: rcpTest0; singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: rcptest0.Activator
Require-Bundle: org.eclipse.ui,
 org.eclipse.core.runtime,
 org.eclipse.core.resources,
 org.eclipse.jdt,
 org.eclipse.jdt.core,
 org.eclipse.jdt.ui
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6

Your clues & boos are all most welcome.

© Stack Overflow or respective owner

Related posts about eclipse-rcp

Related posts about eclipse-pde