mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
30 lines
629 B
HTML
30 lines
629 B
HTML
<html>
|
|
<body>
|
|
Reports Javadoc comments and tags with the following problems:
|
|
<ul>
|
|
<li>invalid tag names</li>
|
|
<li>incomplete tag descriptions</li>
|
|
<li>duplicated tags</li>
|
|
<li>missing Javadoc descriptions</li>
|
|
</ul>
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
/**
|
|
* Invalid tag name
|
|
* @poram param description
|
|
*/
|
|
public void sample(int param){
|
|
}
|
|
</code></pre>
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
/**
|
|
* Pointing to itself {@link #sample(int)}
|
|
*/
|
|
public void sample(int param){
|
|
}
|
|
</code></pre>
|
|
<p>Quick-fix adds the unknown Javadoc tag to the list of user defined additional tags.</p>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |