> I'm trying to document my package. It contains elements from Struts 1.1,
> and Junit, as well as the standard java libraries.
[quoted text clipped - 14 lines]
> import org.apache.struts.action.Action;
> ^
>> I'm trying to document my package. It contains elements from Struts
>> 1.1, and Junit, as well as the standard java libraries.
[quoted text clipped - 20 lines]
>
> --Mike Amling
Unless javadoc is using a different classpath from than that revealed by 'env' -
it's in there all right. This is why I'm somewhat confused.
Elspeth.
Michael Amling - 17 May 2004 04:00 GMT
>>> I'm trying to document my package. It contains elements from Struts
>>> 1.1, and Junit, as well as the standard java libraries.
[quoted text clipped - 20 lines]
> Unless javadoc is using a different classpath from than that revealed by
> 'env' - it's in there all right. This is why I'm somewhat confused.
To prove that org.apache.struts.action.Action is in the CLASSPATH, try
java org.apache.struts.action.Action
If you get an error message saying that Action has no method 'main',
that proves that the class is on the CLASSPATH, in which case I'd wonder
if your javadoc command has specified -classpath and/or -bootclasspath.
--Mike Amling