Groovy Documentation

groovy.org.codenarc.rule.formatting
[Groovy] Class ConsecutiveBlankLinesRule

java.lang.Object
  org.codenarc.rule.AbstractRule
      groovy.org.codenarc.rule.formatting.ConsecutiveBlankLinesRule

class ConsecutiveBlankLinesRule
extends AbstractRule

Makes sure there are no consecutive lines that are either blank or whitespace only.

Authors:
Joe Sondow


Property Summary
String name

int priority

 
Method Summary
void applyTo(SourceCode sourceCode, List violations)

Apply the rule to the given source, writing violations to the given list.

 

Property Detail

name

String name


priority

int priority


 
Method Detail

applyTo

@Override
void applyTo(SourceCode sourceCode, List violations)
Apply the rule to the given source, writing violations to the given list.
Parameters:
sourceCode - the source to check
violations - a list of Violations that may be added to. It can be an empty list


 

Groovy Documentation