]> source.dussan.org Git - aspectj.git/commitdiff
pass formal name through
authoraclement <aclement>
Tue, 31 May 2011 22:09:33 +0000 (22:09 +0000)
committeraclement <aclement>
Tue, 31 May 2011 22:09:33 +0000 (22:09 +0000)
org.aspectj.matcher/src/org/aspectj/weaver/ast/Var.java

index c7de512435c66c939212f85ed9857e5fa229af25..77fddb557d894197b0aed952ff8b65c29568db49 100644 (file)
@@ -40,9 +40,10 @@ public class Var extends Expr {
         * what kind of behaviour happens for two annotation fields of the same type?
         * 
         * @param formalType
+        * @param formalName
         * @return
         */
-       public Var getAccessorForValue(ResolvedType formalType) {
+       public Var getAccessorForValue(ResolvedType formalType, String formalName) {
                throw new IllegalStateException("Only makes sense for annotation variables");
        }
 }