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

19 lines
396 B
HTML

<html>
<body>
Reports declaration modifiers that are not in the canonical
preferred order (as stated in the Java Language Specification).
<p><b>Example:</b></p>
<pre><code>
class Foo {
native public final void foo();
}
</code></pre>
<p>After the quick-fix is applied:</p>
<pre><code>
class Foo {
public final native void foo();
}
</code></pre>
<!-- tooltip end -->
</body>
</html>