• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How To add SWT DOC in Eclipse

 
Ranch Hand
Posts: 32
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I got SWT documentation on following url :http://help.eclipse.org/help32/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/api/org/eclipse/swt/widgets/Shell.html


But there is no link provided to download it.
Can any one tell me from where to download it and how to add it in eclipse.


With Regards.
 
Sheriff
Posts: 22783
131
Eclipse IDE Spring VI Editor Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For any JAR file on the build path you can attach both source code and Javadoc to it as follows:
- right click on the project
- select Properties
- click on Java Build Path
- select the Libraries tab
- open the library by pressing on the +
- click on Source attachment
- press Edit
- select the path (external file for JAR/ZIP files, external folder for directories, workspace for another Eclipse project)
- press OK
- click on Javadoc location
- press Edit
- fill in the Javadoc URL
- press OK

For SWT the Javadoc URL is http://help.eclipse.org/stable/nftopic/org.eclipse.platform.doc.isv/reference/api/


Since this is an Eclipse issue I'm moving this to IDEs.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic