Files
2025-02-05 04:43:28 +00:00

26 lines
663 B
HTML

<html>
<body>
Reports module declarations, classes, fields, or methods that have the <code>@deprecated</code>
Javadoc tag but do not have the <code>@java.lang.Deprecated</code> annotation.
<p><b>Example:</b></p>
<pre><code>
/**
* @deprecated use {@code example()} instead
*/
void sample(){ }
</code></pre>
<p>After the quick-fix is applied:</p>
<pre><code>
/**
* @deprecated use {@code example()} instead
*/
@Deprecated
void sample(){ }
</code></pre>
<!-- tooltip end -->
<p>
Use the checkbox below to report members annotated with <code>@Deprecated</code> without
an explanation in a Javadoc <code>@deprecated</code> tag.
</body>
</html>