1 19 package org.netbeans.test.getters; 20 21 import java.util.ArrayList ; 22 import java.util.List ; 23 24 29 public class AnnotationEverywhere { 30 31 @AnnotationType(id=1, synopsis="Papaya", engineer="Snoopy", date="2004") int a; 32 33 34 @Deprecated public @AnnotationType(id=5, synopsis="unknown", engineer="MaM", date="2005") AnnotationEverywhere() { 35 } 36 37 void annotatedParameters(final @Deprecated @AnnotationType(id=5, engineer="PaF", date="2006") String s) { 38 @AnnotationType(id=10, engineer="Dan", date="2007") List l = new ArrayList (); 39 } 40 41 } 42 | Popular Tags |