Files
openide/java/java-impl/resources/inspectionDescriptions/LocalVariableNamingConvention.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

15 lines
791 B
HTML

<html>
<body>
Reports local variables whose names are too short, too long, or do not follow
the specified regular expression pattern.
<p><b>Example:</b> <code>int X = 42;</code>
should be reported if the inspection is enabled with the default settings in which a variable name should start with a lowercase letter.</p>
<!-- tooltip end -->
<p>Configure the inspection:</p>
<p>
Use the fields in the <b>Options</b> section to specify the minimum length, maximum length, and a regular expression expected for local variable names.
Specify <b>0</b> in order not to check the length of names. Regular expressions should be specified in the standard <b>java.util.regex</b> format.
<p>Use checkboxes to ignore <code>for</code>-loop and <code>catch</code> section parameters.</p>
</body>
</html>