]> source.dussan.org Git - aspectj.git/commitdiff
supports isGeneric
authoracolyer <acolyer>
Fri, 8 Jul 2005 10:21:55 +0000 (10:21 +0000)
committeracolyer <acolyer>
Fri, 8 Jul 2005 10:21:55 +0000 (10:21 +0000)
weaver/src/org/aspectj/weaver/ReferenceType.java
weaver/src/org/aspectj/weaver/ReferenceTypeDelegate.java

index 467428f564b9c1de66e6e48738217d56ef6ccc4a..e541084b7df3bb7d0f0332ae1d0b433acbe84bea 100644 (file)
@@ -56,6 +56,10 @@ public class ReferenceType extends ResolvedTypeX {
     public final boolean isClass() {
        return delegate.isClass();
     }
+    
+    public final boolean isGeneric() {
+       return delegate.isGeneric();
+    }
 
     public AnnotationX[] getAnnotations() {
        return delegate.getAnnotations();
index 645e65b4debfdbdf9294481bd7a668069e1ff74b..8d95ff322f4b29d88484f63a8a439ba7968141aa 100644 (file)
@@ -32,6 +32,7 @@ public interface ReferenceTypeDelegate {
     public boolean isAnnotation();
     public boolean isAnnotationWithRuntimeRetention();
        public boolean isClass();
+       public boolean isGeneric();
        public boolean isExposedToWeaver();
        
        public boolean hasAnnotation(TypeX ofType);