From aadb8b8a596c5321b4dd1b3b21d355601c72379e Mon Sep 17 00:00:00 2001 From: aclement Date: Wed, 16 Jun 2010 18:09:34 +0000 Subject: [PATCH] 310506: optional aspects --- org.aspectj.matcher/src/org/aspectj/weaver/World.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/org.aspectj.matcher/src/org/aspectj/weaver/World.java b/org.aspectj.matcher/src/org/aspectj/weaver/World.java index 377e6cdee..29839dc18 100644 --- a/org.aspectj.matcher/src/org/aspectj/weaver/World.java +++ b/org.aspectj.matcher/src/org/aspectj/weaver/World.java @@ -1562,6 +1562,16 @@ public abstract class World implements Dump.INode { return true; } + /** + * Determine if the named aspect requires a particular type around in order to + * be useful. The type is named in the aop.xml file against the aspect. + * + * @return true if there is a type missing that this aspect really needed around + */ + public boolean hasUnsatisfiedDependency(ResolvedType aspectType) { + return false; + } + public TypePattern getAspectScope(ResolvedType declaringType) { return null; } -- 2.39.5