mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
19 lines
396 B
HTML
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> |