• 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

javadocs

 
Ranch Hand
Posts: 183
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm trying to put together my final submission and I'm having trouble with javadocs.
The code for all of my packages are in c:\suncertsub\code\suncertify\ This has 5 directories under it - one per package.
My command line is below
C:\suncertsub\code>javadoc -d c:\suncertsub\docs\javadoc\ -use -sourcepath c:\su
ncertsub\code\ -source 1.4 -windowtitle "Bodgitt & Scarper Booking Application D
ocumentation" -subpackages suncertify
my problem is it doesn't generate any index type pages that cover the entire application and all the packages. When I was using eclipse it created a file called allclasses-... and an index file that referred to all packages.
ms
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Very interesting here is my javadoc command, and it created all the index.html files that it needed.


I run this from the base directory where all my class program files are.
Mark
 
author and jackaroo
Posts: 12200
280
Mac IntelliJ IDE Firefox Browser Oracle C++ Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Mike
Did you get any errors on screen when you ran javadoc?
Here is my command line (split to make it easier to read):
This also created all the index files.
Regards, Andrew
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic