]> source.dussan.org Git - aspectj.git/commitdiff
anyPackageProtectedMethodExecution
authorwisberg <wisberg>
Thu, 21 Sep 2006 15:27:10 +0000 (15:27 +0000)
committerwisberg <wisberg>
Thu, 21 Sep 2006 15:27:10 +0000 (15:27 +0000)
org.aspectj.lib/src/org/aspectj/lib/pointcuts/Pointcuts.java

index e37c6663bcfb1caa46d90f45ce5dfffa7ad2f6e1..fd96bf908631a62eb0854e337b7232cac69adfc6 100644 (file)
@@ -51,6 +51,9 @@ public final class Pointcuts {
     public pointcut anyPublicMethodExecution() : 
         execution(public * *(..));
 
+    public pointcut anyPackageProtectedMethodExecution() : 
+        execution(!private !public !protected * *(..));
+
     public pointcut anyNonPrivateMethodExecution() : 
         execution(!private * *(..));