1 package net.sf.mavenhist.extractor.checkstyle;
2
3 /**
4 * Extracts the number of all checkstyle warnings.
5 */
6 public class CheckstyleAllExtractor extends AbstractCheckstyleViolationExtractor {
7
8 /**
9 * No severity level means no filtering.
10 * @return <code>null</code> as no severity level.
11 */
12 protected String getSeverity() {
13 return null;
14 }
15
16 /**
17 * {@inheritDoc}
18 */
19 public String getName() {
20 return "csall";
21 }
22 }