My ant script for javadoc task containing following element. <link href="http://java.sun.com/j2se/1.4/docs/api/" offline="true"<br /> packagelistLoc="${j2seDoc}"/> where $j2sedoc is pointing to doc directory containing package-list file.
If everything is fine, I am expecting that my class not found problem for @see tag is resolved, But that's not happening.
Please suggest me where I am doing wrong.
Thanks ina advance, Manohar
Manohar Karamballi
Ranch Hand
Joined: Jul 17, 2001
Posts: 227
posted
0
I figured out solution..
Solution is while importing instead of importing like import java.beans.* import like java.beans.Introspector...
This will help javadoc to find Introspector ....
This worked for me though it's crazy way of doing things