1 19 20 package asm2; 21 22 23 public class AnnotatedField { 24 private AnnReader r; 25 26 public AnnotatedField( AnnReader r) { 27 this.r = r; 28 } 29 30 public Ann[] getAnnotations() { 31 throw new RuntimeException ("Not implemented"); 32 } 33 34 public Ann[] getDeclatedAnnotations() { 35 throw new RuntimeException ("Not implemented"); 36 } 37 38 public Ann getAnnotation(Class c) { 39 throw new RuntimeException ("Not implemented"); 40 } 41 42 } 43 44 | Popular Tags |