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?

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
> 




Back to the top