• 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

Javadoc @see tag problem

 
Ranch Hand
Posts: 227
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am facing coua problem with Javadoc usage.
In one of my classes I have @see tag as follows.

/**
*
* @see java.beans.Introspector
*/

When i try running ant script for javadoc am getting following warning,

[javadoc] javadoc: warning - Tag @see: Class or Package not found: java.beans.Introspector

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
Posts: 227
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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

:-)
Manohar
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Manohar,
Wow! Thanks for posting the solution. I would never have thought to try that.
 
reply
    Bookmark Topic Watch Topic
  • New Topic