mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
28 lines
763 B
HTML
28 lines
763 B
HTML
<html>
|
|
<body>
|
|
Reports missing Javadoc comments and tags.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
/**
|
|
* Missing "@param" is reported (if configured).
|
|
*/
|
|
public void sample(int param){
|
|
}
|
|
</code></pre>
|
|
<p>The quick-fixes add missing tag or missing Javadoc comment:</p>
|
|
<pre><code>
|
|
/**
|
|
* Missing "@param" is reported (if configured).
|
|
* @param param
|
|
*/
|
|
public void sample(int param){
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
Inspection can be configured to ignore deprecated elements or simple accessor methods like <code>getField()</code> or <code>setField()</code>.
|
|
</p>
|
|
You can also use options below to configure required tags and minimal required visibility for the specific code elements
|
|
like method, field, class, package, module.
|
|
</body>
|
|
</html> |