Something Anonymous
Something Anonymous

Reputation: 11

Where do I download java packages?

I'm trying to import this package

import org.eclipse.swt.browser.*;

So that I can use Eclipse's browser widget, but I can't find out where to download the package, and I don't know how to install it either.

Upvotes: 1

Views: 18490

Answers (2)

Christopher Armstrong
Christopher Armstrong

Reputation: 7953

You can find download links and installation instructions at http://www.eclipse.org/swt/

Upvotes: 1

dee-see
dee-see

Reputation: 24088

See this page on how to import the SWT library in your workspace.

Generally, you'll find packages as .jar files on the developer's website. The Eclipse tutorial has a section on how to add external jars to your buildpath.

Upvotes: 2

Related Questions