diff options
author | aclement <aclement> | 2004-12-08 14:15:42 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-12-08 14:15:42 +0000 |
commit | 6e6d34c79638763ab180578dd169147fda5011cc (patch) | |
tree | b4a0def4960a386fe5d05c8209ba49419d402e79 /org.aspectj.ajdt.core/src | |
parent | 4c20738fbb3560cccf1bc7e5bc0a21618c9559c7 (diff) | |
download | aspectj-6e6d34c79638763ab180578dd169147fda5011cc.tar.gz aspectj-6e6d34c79638763ab180578dd169147fda5011cc.zip |
Annotation matching.
Diffstat (limited to 'org.aspectj.ajdt.core/src')
-rw-r--r-- | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseSourceType.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseSourceType.java b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseSourceType.java index f5bafb5c4..2efe987b8 100644 --- a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseSourceType.java +++ b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseSourceType.java @@ -224,6 +224,10 @@ public class EclipseSourceType extends ResolvedTypeX.ConcreteName { public boolean hasAnnotation(ResolvedTypeX ofType) { throw new RuntimeException("How to implement this? Needs to ask eclipse!"); } + + public ResolvedTypeX[] getAnnotationTypes() { + throw new RuntimeException("How to implement this? Needs to ask eclipse!"); + } public PerClause getPerClause() { //should probably be: ((AspectDeclaration)declaration).perClause; |