View Javadoc
1   /*
2   SuppressWithPlainTextCommentFilter
3   offCommentFormat = cs-off
4   onCommentFormat = cs-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 InputSuppressWithPlainTextCommentFilterWithCustomOnAndOffComments {
19      // cs-off
20      //	has tab here
21      // filtered violation above 'Line contains a tab character'
22  
23      // cs-on
24      //	has tab here
25      // violation above 'Line contains a tab character'
26  
27      /* cs-off **/ private int	b; // filtered violation 'Line contains a tab character'
28      /* cs-on **/
29  
30      private 	int c; // violation 'Line contains a tab character'
31  }