1 19 20 package asm2; 21 22 23 public class AnnotatedMethod { 24 private final AnnReader r; 25 26 public AnnotatedMethod(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 public Ann[][] getParameterAnnotations() { 43 throw new RuntimeException ("Not implemented"); 44 } 45 46 } 47 48 | Popular Tags |