Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 81ec1e1dd8a842bb645df7ff0d3f83f3602e99eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
org.eclipse.swt.snippets
========================

Small examples for the usage of SWT.

Setting the classpath:
----------------------

To compile this project, you need to set the classpath specific for your operating and windowing system.
For this, rename one of the following files to `.classpath`:

* .classpath_win32 - Windows
* .classpath_cocoa - Mac OS X
* .classpath_gtk - Linux and all Unix variants

To see these files, you may have to remove the filter for ".* resources":
* In the Project Explorer: view menu > Customize View... > Filters
* In the Package Explorer: view menu > Filters...

Back to the top