I figured it out. It shouldn't be bar.foo, it should be bar#foo. You know...The autocompletion feature in the javadoc, is a little misleading in that it auto-completes illegal javadoc. Perhaps after auto-completing it could substitute in a default formatting that conforms with:
http://java.sun.com/products/jdk/1.2/docs/tooldocs/win32/javadoc.html#specifyingname For example, if I type: bar.f<autocomplete>, and it would normally create bar.foo (the one with the boolean, because that is what I selected from the list), if it is an @see or @link tag it would substitute in: @link bar#foo(boolean b) <cursor now here> Mike On 16 Feb 2002 at 16:00, Mike Aizatsky wrote: > Michael, > > @link is an inline doc tag. You shold write it in braces: {@ling > bar.foo}. > > Best regards, > Mike Aizatsky. > ------------------------------ > IntelliJ Software, "Develop with pleasure!" http://www.intellij.com > > > > -----Original Message----- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > On > > Behalf Of Michael Kirby > > Sent: Saturday, February 16, 2002 3:37 PM > > To: [EMAIL PROTECTED] > > Subject: [Eap-list] @link question > > > > How do I make an @link to a method in a local class? > > > > For example: > > > > > > File.java: > > > > /** > > @link bar.foo() > > class foo > > { > > } > > > > class bar > > { > > public void foo() > > { > > } > > } > > > > I can't seem to get the red error highlighting to go away. when I use > the > > javadoc completion, > > it only gives me the static methods. (of course, in code this makes > sense, > > but in javadoc, it > > gets in the way :-) ) > > > > Mike > > > > --- > > [EMAIL PROTECTED] > > To obtain my PGP public key, mail "SEND PUB KEY" in the > > subject to "[EMAIL PROTECTED]" > > > > > > _______________________________________________ > > Eap-list mailing list > > [EMAIL PROTECTED] > > http://www.intellij.com/mailman/listinfo/eap-list > > > _______________________________________________ > Eap-list mailing list > [EMAIL PROTECTED] > http://www.intellij.com/mailman/listinfo/eap-list > --- [EMAIL PROTECTED] To obtain my PGP public key, mail "SEND PUB KEY" in the subject to "[EMAIL PROTECTED]" _______________________________________________ Eap-list mailing list [EMAIL PROTECTED] http://www.intellij.com/mailman/listinfo/eap-list
