mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
23 lines
673 B
HTML
23 lines
673 B
HTML
<html>
|
|
<body>
|
|
Reports any <code>package.html</code> files which are used for documenting packages.
|
|
<p>Since JDK 1.5, it is recommended that you use <code>package-info.java</code> files instead, as such
|
|
files can also contain package annotations. This way, package-info.java becomes a
|
|
sole repository for package level annotations and documentation.</p>
|
|
<p>Example: <code>package.html</code></p>
|
|
<pre><code>
|
|
<html>
|
|
<body>
|
|
Documentation example.
|
|
</body>
|
|
</html>
|
|
</code></pre>
|
|
<p>After the quick-fix is applied: <code>package-info.java</code></p>
|
|
<pre><code>
|
|
/**
|
|
* Documentation example.
|
|
*/
|
|
package com.sample;
|
|
</code></pre>
|
|
</body>
|
|
</html> |