Home | History | Annotate | Download | only in resources
      1 package samples;
      2 
      3 import com.github.javaparser.ast.expr.AnnotationExpr;
      4 
      5 class ReferenceToParameter extends AnnotationExpr {
      6 
      7     public void aMethod(int foo){
      8         System.out.println(foo);
      9     }
     10 
     11 }
     12