Sorry if this is a really stupid question, but...
I ran javadoc on my code as follows:
javadoc -sourcepath $sourcepath -subpackages $pkg1:$pkg2 -d $outputdir
The version is javadoc from jdk1.5.0_06.
I really like the frames documentation, but javadoc didn't create the
page with frames (index.html), it didn't even create
overview-summary.html.
I read the javadoc tooldoc page, but it didn't really help.
If someone can explain what I have done wrong, I'd appreciate it.
Thanks.
Tony Morris - 02 Feb 2006 07:02 GMT
> Sorry if this is a really stupid question, but...
>
[quoted text clipped - 13 lines]
>
> Thanks.
Sounds like you really want the -sourcepath switch and not the -subpackages
switch.

Signature
Tony Morris
http://tmorris.net/
kramer.newsreader@gmail.com - 03 Feb 2006 20:41 GMT
Hmm. No. Actually, if you don't specify the packages that you want to
run javadoc on then you must use the subpackages option to specify
those packages recursively.
The thing that is so strange is that index.html is supposed to be
generated by default. There is an option noindex to not generate it,
but of course I wasn't using that.