mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
26 lines
663 B
HTML
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> |