Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Build process

...

Not possible yet, but should be in Eclipse 3.3.

...

How do I make an error dialog pop up?

Answered by Sergei Chevtsov, 07-25-2007

Use ErrorDialog like so:

ErrorDialog.openError(shell, title, null, new Status(IStatus.ERROR, pluginId, IStatus.OK, localizedMessage, exception));

Note: localizedMessage must not be null!

...

In build.properties, I specified to build a JAR file from my plugin sources. When I deploy my plugin, a class can not be found. What am I doing wrong?

...