Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [platform-swt-dev] SWT API for downloading?


The following page is also useful for getting started with SWT:
http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/platform-swt-home/SWT_Resources.html

Have fun!
Carolyn



"Andreas Martin" <a.martin@xxxxxxxxxxxxx>
Sent by: platform-swt-dev-admin@xxxxxxxxxxx

06/06/2004 11:38 AM

Please respond to
platform-swt-dev

To
<platform-swt-dev@xxxxxxxxxxx>
cc
Subject
RE: [platform-swt-dev] SWT API for downloading?





Hallo!

You can create the SWT apidoc from the sources of your installation (located
in the plugin directory). I use this shell script:

------------------------------
#!/bin/bash

mkdir tmp_src
unzip -n -d tmp_src `find $ECLIPSE_HOME -name swtsrc.zip`

javadoc -sourcepath tmp_src -d swt-apidoc -windowtitle SWT -doctitle SWT
`find tmp_src -name "*.java"`
rm -R tmp_src
------------------------------

Andreas


> -----Original Message-----
> From: platform-swt-dev-admin@xxxxxxxxxxx
> [mailto:platform-swt-dev-admin@xxxxxxxxxxx] On Behalf Of
> Martin Karlsson
> Sent: Sunday, June 06, 2004 10:49 AM
> To: platform-swt-dev@xxxxxxxxxxx
> Subject: [platform-swt-dev] SWT API for downloading?
>
> Hi,
> I'm new to SWT and I'm trying to get a grip. I've found the
> on-line version of the javadocs API. Is there any javadocs
> API available for downloading?
>
> Martin
>
> Höstrusk och grå moln - köp en resa till solen på Yahoo!
> Resor på adressen http://se.docs.yahoo.com/travel/index.html
> _______________________________________________
> platform-swt-dev mailing list
> platform-swt-dev@xxxxxxxxxxx
> http://dev.eclipse.org/mailman/listinfo/platform-swt-dev
>


_______________________________________________
platform-swt-dev mailing list
platform-swt-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/platform-swt-dev


Back to the top