View Javadoc
1   /*
2   com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck
3   format = (default)^[a-z][a-zA-Z0-9]*$
4   applyToPublic = (default)true
5   applyToProtected = (default)true
6   applyToPackage = (default)true
7   applyToPrivate = (default)true
8   
9   
10  */
11  
12  package com.puppycrawl.tools.checkstyle.grammar.java8;
13  
14  import java.lang.annotation.ElementType;
15  import java.lang.annotation.Target;
16  import java.util.List;
17  
18  
19  public class InputAnnotations6 {
20  
21      abstract class UnmodifiableList<T> implements @Readonly List<@Readonly T> {
22      }
23  
24      @Target(ElementType.TYPE_USE)
25      @interface Readonly {
26  
27      }
28  }