I'm not really clear with this violation raised by PMD. Basically I have 2 questions:

  1. What should I do to get rid of this violation?

  2. What does the following statement mean?

The type has an NCSS line count of 944 Parameters
minimum: The type NCSS count reporting threshold: Default is 1500.

link|improve this question

79% accept rate
feedback

1 Answer

up vote 2 down vote accepted

PMD Code size rules.

NCSS stands for Non-Commented Source Code lines. Methods and/or classes that have high NCSS counts are (at a very high level) too long, and can probably be split up. High numbers of NCSS are bad.

Additionally, it sounds like you might be using Sonar version 2.10 or prior, as Sonar Bug 2676 was fixed in 2.11.

link|improve this answer
Have read the Sonar Bug 2676. So you mean that my class size (without comment) is 944 lines and more than default 800 lines thus giving error? – Rudy Nov 16 '11 at 7:44
That seems to be the way that I'm reading the message, yes. Your file is 944 lines of source code (ignoring comments and whitespace), and the default setting is 800. Note that (from how I read it) lines that only contain braces count as SLOC. – Mike Nov 16 '11 at 11:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.