Versions Compared

Key

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

...

MANIFEST.MF contains the plugin description.
plugin.xml defines extensions that the plugin contributes (thus, is optional).

...

How can I launch the Eclipse web browser from my plugin?

Link verified by Sergei Chevtsov, 06-08-2007

http://wiki.eclipse.org/index.php?title=How_can_I_invoke_the_eclipse_default_web_browser_in_my_own_plugin?

((IWebBrowser)browser).openURL(new URL("http://www.eclipse.org"));

...

How do I create a plugin project that uses an existing SEAL plugin?

...

1. Check out an existing plugin project from our CVS.
2. Create a new plugin project in your workspace.
3. Open the MANIFEST.MF file from the META-INF directory.
4. Choose the DEPENDENCIES tab at the bottom of your editor.
5. Click on ADD... in the "Required Plug-ins" section and select the ID of the desired SEAL plug-in.

How can I launch the Eclipse web browser from my plugin?

Link verified by Sergei Chevtsov, 06-08-2007

http://wiki.eclipse.org/index.php?title=How_can_I_invoke_the_eclipse_default_web_browser_in_my_own_plugin?((IWebBrowser)browser).openURL(new URL("http://www.eclipse.org"));

...

How do I add a third-party library to SEAL?

...