mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
13 lines
563 B
HTML
13 lines
563 B
HTML
<html><body>
|
|
Reports strings in method parameters and return values annotated with <code>@Nls</code> and having the capitalization parameter
|
|
to conform to capitalization rules existing in most platform UI guidelines.
|
|
<p><b>Example:</b></p>
|
|
<pre><code lang="java">
|
|
void setTitle(@NlsContexts.DialogTitle String title) {}
|
|
setTitle("This is sentence capitalization but should be title");
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code lang="java">
|
|
setTitle("This Is Sentence Capitalization but Should Be Title");
|
|
</code></pre>
|
|
</body></html> |