aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--runtime/src/org/aspectj/lang/JoinPoint.java4
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
+
}