Clarified (hopefully:-) how line counts are made on methods

This commit is contained in:
Oliver Burn 2002-02-09 13:26:25 +00:00
parent db84febeb5
commit bdd55605c0
1 changed files with 2 additions and 2 deletions

View File

@ -97,10 +97,10 @@
<p>Checks for lines that are longer than a specified length. The default is <span class="default">&quot;80&quot;</span>. This can be turned off for <code>import</code> statements.</p>
<h3><a name="methodLength">Method Body Length</a></h3>
<p>Checks for method bodies that are longer than a specified number of lines. The default is <span class="default">&quot;150&quot;</span>.
<p>Checks for method bodies that are longer than a specified number of lines. The lines are counted from the opening brace <span class="code">'{'</span> to the closing brace <span class="code">'}'</span>. The default is <span class="default">&quot;150&quot;</span>.
<h3><a name="constructorLength">Constructor Body Length</a></h3>
<p>Checks for constructor bodies that are longer than a specified number of lines. The default is <span class="default">&quot;150&quot;</span>.
<p>Checks for constructor bodies that are longer than a specified number of lines. The lines are counted from the opening brace <span class="code">'{'</span> to the closing brace <span class="code">'}'</span>. The default is <span class="default">&quot;150&quot;</span>.
<h3><a name="fileLength">File Length</a></h3>
<p>Checks for files that are longer than a specified number of lines. The default is <span class="default">&quot;2000&quot;</span>.