This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 194613 - javadoc in cnd - can't find some descriptions while propagating others
Summary: javadoc in cnd - can't find some descriptions while propagating others
Status: RESOLVED INCOMPLETE
Alias: None
Product: cnd
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 6.x
Hardware: PC Linux
: P3 normal (vote)
Assignee: issues@cnd
URL:
Keywords: USABILITY
Depends on:
Blocks:
 
Reported: 2011-01-22 17:23 UTC by sknaumov
Modified: 2011-02-07 10:58 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description sknaumov 2011-01-22 17:23:43 UTC
Netbeans supports javadoc comments in c code, but sometimes it can't find a description that Netbeans even generated itself:
For example, I have a function and I want to add a javadoc comment.
I write /***/, press ENTER and Netbeans generate something like
/**
 *
 * @param x
 * @return OK
 */

Then I add a description to this comment:
/**
 * Some function with 1 parameter
 * @param x
 * @return OK
 */

But only for some functions Netbeans will show this description in autocompletion window. For others it will show "Documentation not found".

Also If there was a javadoc comment for a define, for example
/**javadoc to MY_DEFINE1*/
#define MY_DEFINE1 1
#define MY_DEFINE2 2
#define MY_DEFINE3 3

then in autocompletion screen we will see "comment to MY_DEFINE1" for all three defines instead of "Documentation not found" for defines 2 and 3.
Comment 1 Alexander Simon 2011-02-07 10:58:36 UTC
(In reply to comment #0)
> But only for some functions Netbeans will show this description in
> autocompletion window. For others it will show "Documentation not found".
Please provide example.