View Javadoc
1   /*
2   IllegalTokenText
3   format = (default)^$
4   ignoreCase = (default)false
5   message = (default)
6   tokens = STRING_LITERAL
7   
8   
9   */
10  
11  
12  package com.puppycrawl.tools.checkstyle.checks.coding.illegaltokentext;
13  
14  public class InputIllegalTokenTextDefaultFormat {
15      public void myTest() {
16          String test = "a href";
17          String test2 = "A href";
18      }
19  }