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