1 package net.sf.mavenhist.extractor.checkstyle; 2 3 /** 4 * Extracts the number of all checkstyle violations on info level. 5 */ 6 public class CheckstyleInfoExtractor extends AbstractCheckstyleViolationExtractor { 7 8 /** 9 * Severity level to get all checkstyle infos. 10 * @return Severity level to get all checkstyle infos. 11 */ 12 protected String getSeverity() { 13 return "info"; 14 } 15 16 /** 17 * {@inheritDoc} 18 */ 19 public String getName() { 20 return "csinfos"; 21 } 22 }