View Javadoc
1   /*
2   SuppressWithPlainTextCommentFilter
3   offCommentFormat = (default)// CHECKSTYLE:OFF
4   onCommentFormat = (default)// CHECKSTYLE:ON
5   checkFormat = (default).*
6   messageFormat = (default)(null)
7   idFormat = (default)(null)
8   
9   com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck
10  eachLine = true
11  fileExtensions = (default)
12  
13  
14  */
15  
16  package com.puppycrawl.tools.checkstyle.filters.suppresswithplaintextcommentfilter;
17  
18  public class InputSuppressWithPlainTextCommentFilterWithDefaultCfg {
19      // CHECKSTYLE:OFF
20      //	has tab here
21      // filtered violation above 'Line contains a tab character'
22  
23      // CHECKSTYLE:ON
24      //	has tab here
25      // violation above 'Line contains a tab character'
26  
27      // filtered violation below 'Line contains a tab character'
28  	private int a; // CHECKSTYLE:OFF
29      // CHECKSTYLE:ON
30  }