diff options
author | aclement <aclement> | 2005-04-19 10:48:45 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-04-19 10:48:45 +0000 |
commit | 11ddbca0fd1d44048332e3649967d82d03a78014 (patch) | |
tree | 3b6088b317eeebe03a2e525f844f6f70aa57237e /runtime | |
parent | a8a18ef6408155b479c260e8ecea4b2fc847931d (diff) | |
download | aspectj-11ddbca0fd1d44048332e3649967d82d03a78014.tar.gz aspectj-11ddbca0fd1d44048332e3649967d82d03a78014.zip |
Empty interface for EnclosingStaticPart, to enable differentiation between ESP and SP. migration issue?
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/org/aspectj/lang/JoinPoint.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/src/org/aspectj/lang/JoinPoint.java b/runtime/src/org/aspectj/lang/JoinPoint.java index a3bd675a8..5640786ba 100644 --- a/runtime/src/org/aspectj/lang/JoinPoint.java +++ b/runtime/src/org/aspectj/lang/JoinPoint.java @@ -155,8 +155,9 @@ public interface JoinPoint { String toLongString(); } + public interface EnclosingStaticPart extends StaticPart {} - /** + /** * Returns an object that encapsulates the static parts of this join point. */ StaticPart getStaticPart(); @@ -177,4 +178,5 @@ public interface JoinPoint { static String EXCEPTION_HANDLER = "exception-handler"; static String ADVICE_EXECUTION = "advice-execution"; //??? consider this vs. pcd + } |