mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
23 lines
654 B
HTML
23 lines
654 B
HTML
<html>
|
|
<body>
|
|
Reports the same HTML issues in the Javadoc comments that have been reported by DocLint since Java 8.
|
|
<p>The inspection detects the following issues:</p>
|
|
<ul>
|
|
<li>Self-closed, unclosed, unknown, misplaced, or empty tag</li>
|
|
<li>Unknown or wrong attribute</li>
|
|
<li>Misplaced text</li>
|
|
</ul>
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
/**
|
|
* Unknown tag: List<String>
|
|
* Unclosed tag: error</b>
|
|
* Misplaced text or tag: <ul><li>one</li>, <li>two</li></ul>
|
|
* Wrong or empty attribute: <a href=""></a>
|
|
* Self-closed tag: <br/>
|
|
* ...
|
|
*/
|
|
void sample(){ }
|
|
</code></pre>
|
|
</body>
|
|
</html> |