]> source.dussan.org Git - aspectj.git/commitdiff
helper method
authoraclement <aclement>
Wed, 19 Oct 2005 13:17:31 +0000 (13:17 +0000)
committeraclement <aclement>
Wed, 19 Oct 2005 13:17:31 +0000 (13:17 +0000)
weaver/src/org/aspectj/weaver/bcel/BcelTypeMunger.java

index c340f29255c835d22a9bec55c5ece0254fa42810..20fb8179280e7bd28f4441ca2ba1df17a6ed1385 100644 (file)
@@ -1378,5 +1378,14 @@ public class BcelTypeMunger extends ConcreteTypeMunger {
        public ConcreteTypeMunger parameterizedFor(ResolvedType target) {
                return new BcelTypeMunger(munger.parameterizedFor(target),aspectType);
        }
+       
+       /**
+        * Returns a list of type variable aliases used in this munger.  For example, if the
+        * ITD is 'int I<A,B>.m(List<A> las,List<B> lbs) {}' then this returns a list containing
+        * the strings "A" and "B".
+        */
+       public List /*String*/ getTypeVariableAliases() {
+               return munger.getTypeVariableAliases();
+       }
 }
                
\ No newline at end of file