View Javadoc
1   /*
2   SuppressionXpathFilter
3   file = (file)InputSuppressionXpathFilterEscapeChar.xml
4   optional = (default)false
5   
6   com.puppycrawl.tools.checkstyle.checks.coding.IllegalTokenTextCheck
7   format = [^a-zA-z0-9]*
8   ignoreCase = (default)false
9   message = (default)
10  tokens = CHAR_LITERAL
11  
12  */
13  package com.puppycrawl.tools.checkstyle.filters.suppressionxpathfilter;
14  
15  public class InputSuppressionXpathFilterEscapeChar {
16  
17      char a = '&'; // violation
18  
19      char b = '\"'; // violation
20  
21      char c = '\''; // filtered violation
22  
23      char d = '<'; // filtered violation
24  
25      char e = '>'; // filtered violation
26  }