mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
21 lines
486 B
HTML
21 lines
486 B
HTML
<html>
|
|
<body>
|
|
Reports unresolved references inside Javadoc comments.
|
|
<p>In the following example, the <code>someParam</code> parameter is missing, so it will be highlighted:</p>
|
|
<pre><code>
|
|
class A {
|
|
/**
|
|
* @param someParam description
|
|
**/
|
|
void foo() {
|
|
}
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
Disable the <b>Report inaccessible symbols</b> option to ignore the tags that reference missing method parameters,
|
|
classes, fields and methods.</p>
|
|
|
|
</body>
|
|
</html>
|