[jboss-cvs] JBossAS SVN: r58855 - in projects/aop/trunk/aop: . src/resources/test src/resources/test/beforeafterArgs src/test/org/jboss/test/aop/beforeafter src/test/org/jboss/test/aop/beforeafter/arg
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Dec 5 18:04:25 EST 2006
Author: flaviarnn
Date: 2006-12-05 18:03:14 -0500 (Tue, 05 Dec 2006)
New Revision: 58855
Added:
projects/aop/trunk/aop/src/resources/test/beforeafterArgs/
projects/aop/trunk/aop/src/resources/test/beforeafterArgs/jboss-aop.xml
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/InvalidAspect.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/JoinPointAspect.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/JoinPointPOJO.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/JoinPointTestCase.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAdvicePOJO.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAdviceTestCase.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAfterAspect.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAroundAspect.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedBeforeAspect.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/POJOException.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ReturnAspect.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ReturnPOJO.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ReturnTestCase.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SubClass.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SubValue.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SuperClass.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SuperValue.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ThrownAspect.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ThrownPOJO.java
projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ThrownTestCase.java
Modified:
projects/aop/trunk/aop/build-tests-jdk14.xml
projects/aop/trunk/aop/build-tests-jdk50.xml
Log:
[JBAOP-37] Old arg tests plus new ones
Modified: projects/aop/trunk/aop/build-tests-jdk14.xml
===================================================================
--- projects/aop/trunk/aop/build-tests-jdk14.xml 2006-12-05 22:05:17 UTC (rev 58854)
+++ projects/aop/trunk/aop/build-tests-jdk14.xml 2006-12-05 23:03:14 UTC (rev 58855)
@@ -521,6 +521,10 @@
<param name="caller" value="precompiled-genadvisor-tests"/>
</antcall>
<antcall target="_run-precompiled-test" inheritRefs="true">
+ <param name="test" value="beforeafterArgs"/>
+ <param name="caller" value="precompiled-genadvisor-tests"/>
+ </antcall>
+ <antcall target="_run-precompiled-test" inheritRefs="true">
<param name="test" value="dynamicgenadvisor"/>
<param name="caller" value="precompiled-genadvisor-tests"/>
</antcall>
Modified: projects/aop/trunk/aop/build-tests-jdk50.xml
===================================================================
--- projects/aop/trunk/aop/build-tests-jdk50.xml 2006-12-05 22:05:17 UTC (rev 58854)
+++ projects/aop/trunk/aop/build-tests-jdk50.xml 2006-12-05 23:03:14 UTC (rev 58855)
@@ -506,6 +506,10 @@
<param name="caller" value="precompiled-genadvisor-tests"/>
</antcall>
<antcall target="_run-precompiled-test" inheritRefs="true">
+ <param name="test" value="beforeafterArgs"/>
+ <param name="caller" value="precompiled-genadvisor-tests"/>
+ </antcall>
+ <antcall target="_run-precompiled-test" inheritRefs="true">
<param name="test" value="dynamicgenadvisor"/>
<param name="caller" value="precompiled-genadvisor-tests"/>
</antcall>
Added: projects/aop/trunk/aop/src/resources/test/beforeafterArgs/jboss-aop.xml
===================================================================
--- projects/aop/trunk/aop/src/resources/test/beforeafterArgs/jboss-aop.xml 2006-12-05 22:05:17 UTC (rev 58854)
+++ projects/aop/trunk/aop/src/resources/test/beforeafterArgs/jboss-aop.xml 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,235 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE aop SYSTEM "jboss-aop_1_0.dtd">
+
+<aop>
+ <!-- @JoinPoint test -->
+ <aspect class="org.jboss.test.aop.beforeafterArgs.JoinPointAspect" scope="PER_VM"/>
+
+ <bind pointcut="field(* org.jboss.test.aop.beforeafterArgs.JoinPointPOJO->number)">
+ <before name="before1" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ <after name="after1" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ </bind>
+
+ <bind pointcut="set(* org.jboss.test.aop.beforeafterArgs.JoinPointPOJO->text)">
+ <before name="before2" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ <after name="after2" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ </bind>
+
+ <bind pointcut="get(* org.jboss.test.aop.beforeafterArgs.JoinPointPOJO->text)">
+ <before name="before5" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ <after name="after5" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.JoinPointPOJO->method1(..))">
+ <before name="before3" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ <after name="after3" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.JoinPointPOJO->method2(..))">
+ <before name="before4" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ <after name="after4" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ <throwing name="throwing1" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.JoinPointPOJO->method3(..))">
+ <throwing name="throwing2" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.JoinPointPOJO->method4(..))">
+ <throwing name="throwing3" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.JoinPointPOJO->method5(..))">
+ <throwing name="throwing4" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.JoinPointPOJO->method6(..))">
+ <throwing name="throwing5" aspect="org.jboss.test.aop.beforeafterArgs.JoinPointAspect"/>
+ </bind>
+
+ <!-- Return type and @Return test -->
+ <aspect class="org.jboss.test.aop.beforeafterArgs.ReturnAspect" scope="PER_VM"/>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method1(..))">
+ <before name="before" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <advice name="around1" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after1" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method2(..))">
+ <advice name="around2" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after2" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method3(..))">
+ <before name="before" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <advice name="around3" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after3" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method4(..))">
+ <advice name="around4" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after4" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method5(..))">
+ <advice name="around5" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after5" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method6(..))">
+ <advice name="around6" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after6" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method7(..))">
+ <advice name="around7" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after7" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method8(..))">
+ <before name="before" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <advice name="around8" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after8" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method9(..))">
+ <advice name="around9" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after9" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method10(..))">
+ <before name="before" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <advice name="around10" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after10" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ReturnPOJO->method11(..))">
+ <advice name="around11" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ <after name="after11" aspect="org.jboss.test.aop.beforeafterArgs.ReturnAspect"/>
+ </bind>
+
+ <!-- @Thrown test -->
+ <aspect class="org.jboss.test.aop.beforeafterArgs.ThrownAspect" scope="PER_VM"/>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ThrownPOJO->method1(..))">
+ <throwing name="throwing1" aspect="org.jboss.test.aop.beforeafterArgs.ThrownAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ThrownPOJO->method2(..))">
+ <throwing name="throwing2" aspect="org.jboss.test.aop.beforeafterArgs.ThrownAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ThrownPOJO->method3(..))">
+ <throwing name="throwing3" aspect="org.jboss.test.aop.beforeafterArgs.ThrownAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ThrownPOJO->method4(..))">
+ <throwing name="throwing4" aspect="org.jboss.test.aop.beforeafterArgs.ThrownAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ThrownPOJO->method5(..))">
+ <throwing name="throwing5" aspect="org.jboss.test.aop.beforeafterArgs.ThrownAspect"/>
+ </bind>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.ThrownPOJO->method6(..))">
+ <throwing name="throwing6" aspect="org.jboss.test.aop.beforeafterArgs.ThrownAspect"/>
+ <throwing name="throwing7" aspect="org.jboss.test.aop.beforeafterArgs.ThrownAspect"/>
+ </bind>
+
+ <!-- overloaded advices test -->
+
+ <aspect class="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect" scope="PER_VM"/>
+
+ <bind pointcut="set(* org.jboss.test.aop.beforeafterArgs.OverloadedAdvicePOJO->text)">
+ <before name="before1" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before2" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before3" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before4" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before5" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before6" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before7" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before8" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before9" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before10" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before11" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ <before name="before12" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedBeforeAspect"/>
+ </bind>
+
+ <aspect class="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect" scope="PER_VM"/>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.OverloadedAdvicePOJO->method1(int,long))">
+ <advice name="around1" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around2" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around3" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around4" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around5" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around6" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around7" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around8" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around9" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around10" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around11" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ <advice name="around12" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAroundAspect"/>
+ </bind>
+
+ <aspect class="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect" scope="PER_VM"/>
+
+ <bind pointcut="execution(* org.jboss.test.aop.beforeafterArgs.OverloadedAdvicePOJO->method2(..))">
+ <after name="after1" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after2" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after3" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after4" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after5" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after6" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after7" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after8" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after9" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after10" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after11" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after12" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after13" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after14" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after15" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after16" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after17" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after18" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after19" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after20" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after21" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after22" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after23" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after24" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after25" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after26" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after27" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after28" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after29" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after30" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after31" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after32" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after33" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after34" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after35" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after36" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after37" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after38" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after39" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after40" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after41" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after42" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after43" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after44" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after45" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after46" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after47" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after48" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after49" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after50" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after51" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after52" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after53" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after54" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ <after name="after55" aspect="org.jboss.test.aop.beforeafterArgs.OverloadedAfterAspect"/>
+ </bind>
+</aop>
\ No newline at end of file
Added: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/InvalidAspect.java
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/InvalidAspect.java 2006-12-05 22:05:17 UTC (rev 58854)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/InvalidAspect.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import junit.framework.Assert;
+
+/**
+ * Aspect whose advices must never be called.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+/* TODO remove configuration from jboss-aop.xml file (in org.jboss.test.aop.args
+ * and use it here
+ */
+public class InvalidAspect
+{
+ public void before(@org.jboss.aop.advice.annotation.Invocation Object object)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void after(@org.jboss.aop.advice.annotation.Invocation Object object)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void throwing(@org.jboss.aop.advice.annotation.Invocation Object object)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/JoinPointAspect.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/JoinPointAspect.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/JoinPointAspect.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/JoinPointAspect.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,142 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import junit.framework.Assert;
+
+import org.jboss.aop.ConstructorInfo;
+import org.jboss.aop.FieldInfo;
+import org.jboss.aop.JoinPointInfo;
+import org.jboss.aop.MethodInfo;
+import org.jboss.aop.advice.annotation.JoinPoint;
+import org.jboss.aop.advice.annotation.Thrown;
+
+/**
+ * Aspect used on @JoinPoint parameter tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class JoinPointAspect
+{
+ static String beforeAdvice = null;
+ static JoinPointInfo beforeJoinPointInfo = null;
+ static String afterAdvice = null;
+ static JoinPointInfo afterJoinPointInfo = null;
+ static String throwingAdvice = null;
+ static JoinPointInfo throwingJoinPointInfo = null;
+
+ public static void clear()
+ {
+ beforeAdvice = null;
+ beforeJoinPointInfo = null;
+ afterAdvice = null;
+ afterJoinPointInfo = null;
+ throwingAdvice = null;
+ throwingJoinPointInfo = null;
+ }
+
+ public void before1()
+ {
+ beforeAdvice = "before1";
+ }
+
+ public void before2(@JoinPoint Object joinPointInfo)
+ {
+ beforeAdvice = "before2";
+ beforeJoinPointInfo = (JoinPointInfo) joinPointInfo;
+ }
+
+ public void before3(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ beforeAdvice = "before3";
+ beforeJoinPointInfo = joinPointInfo;
+ }
+
+ public void before4(@JoinPoint MethodInfo joinPointInfo)
+ {
+ beforeAdvice = "before4";
+ beforeJoinPointInfo = (JoinPointInfo) joinPointInfo;
+ }
+
+ public void before5(@JoinPoint MethodInfo joinPointInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void after1(@JoinPoint FieldInfo joinPointInfo)
+ {
+ afterAdvice = "after1";
+ afterJoinPointInfo = joinPointInfo;
+ }
+
+ public void after2(@JoinPoint ConstructorInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void after3()
+ {
+ afterAdvice = "after3";
+ }
+
+ public void after4(@JoinPoint Object joinPointInfo)
+ {
+ afterAdvice = "after4";
+ afterJoinPointInfo = (JoinPointInfo) joinPointInfo;
+ }
+
+ public void after5(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ afterAdvice = "after5";
+ afterJoinPointInfo = joinPointInfo;
+ }
+
+ public void throwing1(@Thrown Throwable throwable, @JoinPoint Object joinPointInfo)
+ {
+ throwingAdvice = "throwing1";
+ throwingJoinPointInfo = (JoinPointInfo) joinPointInfo;
+ }
+
+ public void throwing2(@JoinPoint ConstructorInfo joinPointInfo,
+ @Thrown Throwable throwable)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void throwing3(@Thrown Throwable throwable,
+ @JoinPoint JoinPointInfo joinPointInfo)
+ {
+ throwingAdvice = "throwing3";
+ throwingJoinPointInfo = joinPointInfo;
+ }
+
+ public void throwing4(@Thrown Throwable throwable)
+ {
+ throwingAdvice = "throwing4";
+ }
+
+ public void throwing5(@JoinPoint MethodInfo joinPointInfo, @Thrown Throwable throwable)
+ {
+ throwingAdvice = "throwing5";
+ throwingJoinPointInfo = joinPointInfo;
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/JoinPointPOJO.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/JoinPointPOJO.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/JoinPointPOJO.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/JoinPointPOJO.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,67 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+/**
+ * Plain old java object used on @JoinPoint parameter tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class JoinPointPOJO
+{
+ public int number;
+ public String text;
+
+ public void method1()
+ {
+
+ }
+
+ public String method2(boolean shouldThrow) throws POJOException
+ {
+ if (shouldThrow)
+ {
+ throw new POJOException();
+ }
+ return "method3";
+ }
+
+ public void method3() throws POJOException
+ {
+ throw new POJOException();
+ }
+
+ public void method4() throws POJOException
+ {
+ throw new POJOException();
+ }
+
+ public void method5() throws POJOException
+ {
+ throw new POJOException();
+ }
+
+ public void method6() throws POJOException
+ {
+ throw new POJOException();
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/JoinPointTestCase.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/JoinPointTestCase.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/JoinPointTestCase.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/JoinPointTestCase.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,248 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+import junit.textui.TestRunner;
+
+import org.jboss.aop.FieldInfo;
+import org.jboss.aop.MethodInfo;
+import org.jboss.test.aop.AOPTestWithSetup;
+
+/**
+ * Tests the use of @JoinPoint parameters.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class JoinPointTestCase extends AOPTestWithSetup
+{
+ private JoinPointPOJO pojo;
+
+ public static void main(String[] args)
+ {
+ TestRunner.run(suite());
+ }
+
+ public static Test suite()
+ {
+ TestSuite suite = new TestSuite("JoinPointTestCase");
+ suite.addTestSuite(JoinPointTestCase.class);
+ return suite;
+ }
+
+ public JoinPointTestCase(String name)
+ {
+ super(name);
+ }
+
+ public void setUp() throws Exception
+ {
+ super.setUp();
+ JoinPointAspect.clear();
+ this.pojo = new JoinPointPOJO();
+ }
+
+ public void test1()
+ {
+ pojo.number = 0;
+ assertEquals("before1", JoinPointAspect.beforeAdvice);
+ assertNull(JoinPointAspect.beforeJoinPointInfo);
+ assertEquals("after1", JoinPointAspect.afterAdvice);
+ assertNotNull(JoinPointAspect.afterJoinPointInfo);
+ assertTrue(JoinPointAspect.afterJoinPointInfo instanceof FieldInfo);
+ FieldInfo fieldInfo = (FieldInfo) JoinPointAspect.afterJoinPointInfo;
+ assertEquals("number", fieldInfo.getAdvisedField().getName());
+ assertFalse(fieldInfo.isRead());
+ }
+
+ public void test2()
+ {
+ pojo.text = "test2";
+ assertEquals("before2", JoinPointAspect.beforeAdvice);
+ assertNotNull(JoinPointAspect.beforeJoinPointInfo);
+ assertNull(JoinPointAspect.afterAdvice);
+ assertNull(JoinPointAspect.afterJoinPointInfo);
+
+ assertTrue(JoinPointAspect.beforeJoinPointInfo instanceof FieldInfo);
+ FieldInfo fieldInfo = (FieldInfo) JoinPointAspect.beforeJoinPointInfo;
+ assertEquals("text", fieldInfo.getAdvisedField().getName());
+ assertFalse(fieldInfo.isRead());
+ }
+
+ public void test3()
+ {
+ String text = pojo.text;
+ assertNull(JoinPointAspect.beforeAdvice);
+ assertNull(JoinPointAspect.beforeJoinPointInfo);
+ assertEquals("after5", JoinPointAspect.afterAdvice);
+ assertNotNull(JoinPointAspect.afterJoinPointInfo);
+ assertTrue(JoinPointAspect.afterJoinPointInfo instanceof FieldInfo);
+ FieldInfo fieldInfo = (FieldInfo) JoinPointAspect.afterJoinPointInfo;
+ assertEquals("text", fieldInfo.getAdvisedField().getName());
+ assertTrue(fieldInfo.isRead());
+ }
+
+ public void test4()
+ {
+ pojo.method1();
+ assertEquals("before3", JoinPointAspect.beforeAdvice);
+ assertNotNull(JoinPointAspect.beforeJoinPointInfo);
+ assertEquals("after3", JoinPointAspect.afterAdvice);
+ assertNull(JoinPointAspect.afterJoinPointInfo);
+ assertTrue(JoinPointAspect.beforeJoinPointInfo instanceof MethodInfo);
+ assertEquals("method1", ((MethodInfo) JoinPointAspect.beforeJoinPointInfo).
+ getAdvisedMethod().getName());
+ }
+
+ public void test5() throws POJOException
+ {
+ pojo.method2(false);
+ assertEquals("before4", JoinPointAspect.beforeAdvice);
+ assertNotNull(JoinPointAspect.beforeJoinPointInfo);
+ assertEquals("after4", JoinPointAspect.afterAdvice);
+ assertNotNull(JoinPointAspect.afterJoinPointInfo);
+ assertNull(JoinPointAspect.throwingAdvice);
+ assertNull(JoinPointAspect.throwingJoinPointInfo);
+ assertSame(JoinPointAspect.beforeJoinPointInfo, JoinPointAspect.afterJoinPointInfo);
+ assertTrue(JoinPointAspect.beforeJoinPointInfo instanceof MethodInfo);
+ assertEquals("method2", ((MethodInfo) JoinPointAspect.beforeJoinPointInfo).
+ getAdvisedMethod().getName());
+ }
+
+ public void test6() throws POJOException
+ {
+ boolean exceptionThrown = false;
+ try
+ {
+ pojo.method2(true);
+ }
+ catch (POJOException e)
+ {
+ exceptionThrown = true;
+ }
+ assertTrue(exceptionThrown);
+
+ assertEquals("before4", JoinPointAspect.beforeAdvice);
+ assertNotNull(JoinPointAspect.beforeJoinPointInfo);
+ assertNull(JoinPointAspect.afterAdvice);
+ assertNull(JoinPointAspect.afterJoinPointInfo);
+ assertEquals("throwing1", JoinPointAspect.throwingAdvice);
+ assertNotNull(JoinPointAspect.throwingJoinPointInfo);
+ assertSame(JoinPointAspect.beforeJoinPointInfo,
+ JoinPointAspect.throwingJoinPointInfo);
+ assertTrue(JoinPointAspect.beforeJoinPointInfo instanceof MethodInfo);
+ assertEquals("method2", ((MethodInfo) JoinPointAspect.beforeJoinPointInfo).
+ getAdvisedMethod().getName());
+ }
+
+ public void test7() throws POJOException
+ {
+ boolean exceptionThrown = false;
+ try
+ {
+ pojo.method3();
+ }
+ catch (POJOException e)
+ {
+ exceptionThrown = true;
+ }
+ assertTrue(exceptionThrown);
+
+ assertNull(JoinPointAspect.beforeAdvice);
+ assertNull(JoinPointAspect.beforeJoinPointInfo);
+ assertNull(JoinPointAspect.afterAdvice);
+ assertNull(JoinPointAspect.afterJoinPointInfo);
+ assertNull(JoinPointAspect.throwingAdvice);
+ assertNull(JoinPointAspect.throwingJoinPointInfo);
+ }
+
+ public void test8() throws POJOException
+ {
+ boolean exceptionThrown = false;
+ try
+ {
+ pojo.method4();
+ }
+ catch (POJOException e)
+ {
+ exceptionThrown = true;
+ }
+ assertTrue(exceptionThrown);
+
+ assertNull(JoinPointAspect.beforeAdvice);
+ assertNull(JoinPointAspect.beforeJoinPointInfo);
+ assertNull(JoinPointAspect.afterAdvice);
+ assertNull(JoinPointAspect.afterJoinPointInfo);
+ assertEquals("throwing3", JoinPointAspect.throwingAdvice);
+ assertNotNull(JoinPointAspect.throwingJoinPointInfo);
+ assertTrue(JoinPointAspect.throwingJoinPointInfo instanceof MethodInfo);
+ assertEquals("method4", ((MethodInfo) JoinPointAspect.throwingJoinPointInfo).
+ getAdvisedMethod().getName());
+ }
+
+ public void test9() throws POJOException
+ {
+ boolean exceptionThrown = false;
+ try
+ {
+ pojo.method5();
+ }
+ catch (POJOException e)
+ {
+ exceptionThrown = true;
+ }
+ assertTrue(exceptionThrown);
+
+ assertNull(JoinPointAspect.beforeAdvice);
+ assertNull(JoinPointAspect.beforeJoinPointInfo);
+ assertNull(JoinPointAspect.afterAdvice);
+ assertNull(JoinPointAspect.afterJoinPointInfo);
+ assertEquals("throwing4", JoinPointAspect.throwingAdvice);
+ assertNull(JoinPointAspect.throwingJoinPointInfo);
+ }
+
+ public void test10() throws POJOException
+ {
+ boolean exceptionThrown = false;
+ try
+ {
+ pojo.method6();
+ }
+ catch (POJOException e)
+ {
+ exceptionThrown = true;
+ }
+ assertTrue(exceptionThrown);
+
+ assertNull(JoinPointAspect.beforeAdvice);
+ assertNull(JoinPointAspect.beforeJoinPointInfo);
+ assertNull(JoinPointAspect.afterAdvice);
+ assertNull(JoinPointAspect.afterJoinPointInfo);
+ assertEquals("throwing5", JoinPointAspect.throwingAdvice);
+ assertNotNull(JoinPointAspect.throwingJoinPointInfo);
+ assertTrue(JoinPointAspect.throwingJoinPointInfo instanceof MethodInfo);
+ assertEquals("method6", ((MethodInfo) JoinPointAspect.throwingJoinPointInfo).
+ getAdvisedMethod().getName());
+
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAdvicePOJO.java (from rev 58716, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/OverloadedAdvicePOJO.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/OverloadedAdvicePOJO.java 2006-11-29 01:03:28 UTC (rev 58716)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAdvicePOJO.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,39 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+/**
+ * Plain old java object used on overloaded advice tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class OverloadedAdvicePOJO
+{
+ public String text;
+
+ public void method1(int arg1, long arg2) {}
+
+ public SuperClass method2(float arg1, SubValue arg2)
+ {
+ return null;
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAdviceTestCase.java (from rev 58716, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/OverloadedAdviceTestCase.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/OverloadedAdviceTestCase.java 2006-11-29 01:03:28 UTC (rev 58716)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAdviceTestCase.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,165 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+import junit.textui.TestRunner;
+
+import org.jboss.test.aop.AOPTestWithSetup;
+
+/**
+ * Tests the selection of advice methods when these are overloaded.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class OverloadedAdviceTestCase extends AOPTestWithSetup
+{
+ private OverloadedAdvicePOJO pojo;
+
+ public static void main(String[] args)
+ {
+ TestRunner.run(suite());
+ }
+
+ public static Test suite()
+ {
+ TestSuite suite = new TestSuite("OverloadedAdviceTestCase");
+ suite.addTestSuite(OverloadedAdviceTestCase.class);
+ return suite;
+ }
+
+ public OverloadedAdviceTestCase(String name)
+ {
+ super(name);
+ }
+
+ public void setUp() throws Exception
+ {
+ super.setUp();
+ this.pojo = new OverloadedAdvicePOJO();
+ }
+
+ public void test1()
+ {
+ OverloadedBeforeAspect.clear();
+ pojo.text = "test2";
+ assertEquals("FieldInfo,String", OverloadedBeforeAspect.before1);
+ assertEquals("FieldInfo,Object", OverloadedBeforeAspect.before2);
+ assertEquals("JoinPointInfo,String", OverloadedBeforeAspect.before3);
+ assertEquals("JoinPointInfo,Object", OverloadedBeforeAspect.before4);
+ assertEquals("Object,String", OverloadedBeforeAspect.before5);
+ assertEquals("Object,Object", OverloadedBeforeAspect.before6);
+ assertEquals("FieldInfo", OverloadedBeforeAspect.before7);
+ assertEquals("JoinPointInfo", OverloadedBeforeAspect.before8);
+ assertEquals("Object", OverloadedBeforeAspect.before9);
+ assertEquals("String", OverloadedBeforeAspect.before10);
+ assertEquals("Object", OverloadedBeforeAspect.before11);
+ assertEquals("", OverloadedBeforeAspect.before12);
+ }
+
+ public void test2()
+ {
+ OverloadedAroundAspect.clear();
+ pojo.method1(10, 15);
+ assertEquals("defaultSignature", OverloadedAroundAspect.around1);
+ assertEquals("MethodInvocation,int,long", OverloadedAroundAspect.around2);
+ assertEquals("Invocation,int,long", OverloadedAroundAspect.around3);
+ assertEquals("Object,int,long", OverloadedAroundAspect.around4);
+ assertTrue(OverloadedAroundAspect.around5.startsWith("MethodInvocation,"));
+ assertTrue(OverloadedAroundAspect.around5.equals("MethodInvocation,int") ||
+ OverloadedAroundAspect.around5.equals("MethodInvocation,long"));
+ assertTrue(OverloadedAroundAspect.around6.startsWith("Invocation,"));
+ assertTrue(OverloadedAroundAspect.around6.equals("Invocation,int") ||
+ OverloadedAroundAspect.around6.equals("Invocation,long"));
+ assertTrue(OverloadedAroundAspect.around7.startsWith("Object,"));
+ assertTrue(OverloadedAroundAspect.around7.equals("Object,int") ||
+ OverloadedAroundAspect.around7.equals("Object,long"));
+ assertEquals("MethodInvocation", OverloadedAroundAspect.around8);
+ assertEquals("Object", OverloadedAroundAspect.around9);
+ assertEquals("int,long", OverloadedAroundAspect.around10);
+ assertTrue(OverloadedAroundAspect.around11.equals("int") ||
+ OverloadedAroundAspect.around11.equals("long"));
+ assertEquals("", OverloadedAroundAspect.around12);
+ }
+
+ public void test3()
+ {
+ OverloadedAfterAspect.clear();
+ pojo.method2(0, null);
+ assertEquals("Object,MethodInfo,SuperClass,float,SubValue", OverloadedAfterAspect.after1);
+ assertEquals("Object,MethodInfo,SuperClass,float,SuperValue", OverloadedAfterAspect.after2);
+ assertEquals("Object,MethodInfo,SuperClass,float,Object", OverloadedAfterAspect.after3);
+ assertEquals("Object,MethodInfo,Object,float,SubValue", OverloadedAfterAspect.after4);
+ assertEquals("Object,MethodInfo,Object,float,SuperValue", OverloadedAfterAspect.after5);
+ assertEquals("Object,MethodInfo,Object,float,Object", OverloadedAfterAspect.after6);
+ assertEquals("Object,JoinPointInfo,SuperClass,float,SubValue", OverloadedAfterAspect.after7);
+ assertEquals("SuperClass,MethodInfo,SuperClass,SubValue", OverloadedAfterAspect.after8);
+ assertEquals("Object,MethodInfo,SuperClass,float", OverloadedAfterAspect.after9);
+ assertEquals("Object,MethodInfo,SuperClass,SuperValue", OverloadedAfterAspect.after10);
+ assertEquals("SuperClass,MethodInfo,SuperClass,Object", OverloadedAfterAspect.after11);
+ assertEquals("SuperClass,MethodInfo,Object,SubValue", OverloadedAfterAspect.after12);
+ assertEquals("Object,MethodInfo,Object,float", OverloadedAfterAspect.after13);
+ assertEquals("SubClass,MethodInfo,Object,SuperValue", OverloadedAfterAspect.after14);
+ assertEquals("SubClass,MethodInfo,Object,Object", OverloadedAfterAspect.after15);
+ assertEquals("SuperClass,JoinPointInfo,SuperClass,SubValue", OverloadedAfterAspect.after16);
+ assertEquals("SubClass,JoinPointInfo,SuperClass,float", OverloadedAfterAspect.after17);
+ assertEquals("SubClass,JoinPointInfo,SuperClass,SuperValue", OverloadedAfterAspect.after18);
+ assertEquals("SuperClass,JoinPointInfo,SuperClass,Object", OverloadedAfterAspect.after19);
+ assertEquals("SubClass,Object,SuperClass,SubValue", OverloadedAfterAspect.after20);
+ assertEquals("Object,Object,SuperClass,float", OverloadedAfterAspect.after21);
+ assertEquals("SubClass,Object,SuperClass,SuperValue", OverloadedAfterAspect.after22);
+ assertEquals("Object,Object,SuperClass,Object", OverloadedAfterAspect.after23);
+ assertEquals("Object,MethodInfo,SuperClass", OverloadedAfterAspect.after24);
+ assertEquals("Object,MethodInfo,Object", OverloadedAfterAspect.after25);
+ assertEquals("Object,JoinPointInfo,SuperClass", OverloadedAfterAspect.after26);
+ assertEquals("Object,MethodInfo,float,SubValue", OverloadedAfterAspect.after27);
+ assertEquals("Object,MethodInfo,float,SuperValue", OverloadedAfterAspect.after28);
+ assertEquals("Object,MethodInfo,float,Object", OverloadedAfterAspect.after29);
+ assertEquals("Object,JoinPointInfo,float,SubValue", OverloadedAfterAspect.after30);
+ assertEquals("SuperClass,MethodInfo,SubValue", OverloadedAfterAspect.after31);
+ assertEquals("Object,MethodInfo,float", OverloadedAfterAspect.after32);
+ assertEquals("Object,MethodInfo,SuperValue", OverloadedAfterAspect.after33);
+ assertEquals("SuperClass,JoinPointInfo,SubValue", OverloadedAfterAspect.after34);
+ assertEquals("SubClass,JoinPointInfo,float", OverloadedAfterAspect.after35);
+ assertEquals("SubClass,JoinPointInfo,SuperValue", OverloadedAfterAspect.after36);
+ assertEquals("SubClass,Object,SubValue", OverloadedAfterAspect.after37);
+ assertEquals("Object,Object,float", OverloadedAfterAspect.after38);
+ assertEquals("SubClass,Object,SuperValue", OverloadedAfterAspect.after39);
+ assertEquals("Object,MethodInfo", OverloadedAfterAspect.after40);
+ assertEquals("Object,JoinPointInfo", OverloadedAfterAspect.after41);
+ assertEquals("Object,SuperClass,float,SubValue", OverloadedAfterAspect.after42);
+ assertEquals("Object,SuperClass,float,SuperValue", OverloadedAfterAspect.after43);
+ assertEquals("Object,SuperClass,float,Object", OverloadedAfterAspect.after44);
+ assertEquals("SuperClass,SuperClass,float", OverloadedAfterAspect.after45);
+ assertEquals("Object,SuperClass,SubValue", OverloadedAfterAspect.after46);
+ assertEquals("Object,SuperClass,SuperValue", OverloadedAfterAspect.after47);
+ assertEquals("SuperClass,SuperClass,Object", OverloadedAfterAspect.after48);
+ assertEquals("Object,SuperClass", OverloadedAfterAspect.after49);
+ assertEquals("Object,Object", OverloadedAfterAspect.after50);
+ assertEquals("void,float,SubValue", OverloadedAfterAspect.after51);
+ assertEquals("Object,float", OverloadedAfterAspect.after52);
+ assertEquals("void,SubValue", OverloadedAfterAspect.after53);
+ assertEquals("void,SuperValue", OverloadedAfterAspect.after54);
+ assertEquals("void", OverloadedAfterAspect.after55);
+ }
+}
\ No newline at end of file
Added: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAfterAspect.java
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAfterAspect.java 2006-12-05 22:05:17 UTC (rev 58854)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAfterAspect.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,10122 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import org.jboss.aop.JoinPointInfo;
+import org.jboss.aop.MethodInfo;
+import org.jboss.aop.advice.annotation.Arg;
+import org.jboss.aop.advice.annotation.JoinPoint;
+import org.jboss.aop.advice.annotation.Return;
+
+/**
+ * Aspect used on overloaded after advice tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class OverloadedAfterAspect
+{
+ static String after1 = null;
+ static String after2 = null;
+ static String after3 = null;
+ static String after4 = null;
+ static String after5 = null;
+ static String after6 = null;
+ static String after7 = null;
+ static String after8 = null;
+ static String after9 = null;
+ static String after10 = null;
+ static String after11 = null;
+ static String after12 = null;
+ static String after13 = null;
+ static String after14 = null;
+ static String after15 = null;
+ static String after16 = null;
+ static String after17 = null;
+ static String after18 = null;
+ static String after19 = null;
+ static String after20 = null;
+ static String after21 = null;
+ static String after22 = null;
+ static String after23 = null;
+ static String after24 = null;
+ static String after25 = null;
+ static String after26 = null;
+ static String after27 = null;
+ static String after28 = null;
+ static String after29 = null;
+ static String after30 = null;
+ static String after31 = null;
+ static String after32 = null;
+ static String after33 = null;
+ static String after34 = null;
+ static String after35 = null;
+ static String after36 = null;
+ static String after37 = null;
+ static String after38 = null;
+ static String after39 = null;
+ static String after40 = null;
+ static String after41 = null;
+ static String after42 = null;
+ static String after43 = null;
+ static String after44 = null;
+ static String after45 = null;
+ static String after46 = null;
+ static String after47 = null;
+ static String after48 = null;
+ static String after49 = null;
+ static String after50 = null;
+ static String after51 = null;
+ static String after52 = null;
+ static String after53 = null;
+ static String after54 = null;
+ static String after55 = null;
+ static String after56 = null;
+ static String after57 = null;
+ static String after58 = null;
+ static String after59 = null;
+ static String after60 = null;
+
+ public static void clear()
+ {
+ after1 = null;
+ after2 = null;
+ after3 = null;
+ after4 = null;
+ after5 = null;
+ after6 = null;
+ after7 = null;
+ after8 = null;
+ after9 = null;
+ after10 = null;
+ after11 = null;
+ after12 = null;
+ after13 = null;
+ after14 = null;
+ after15 = null;
+ after16 = null;
+ after17 = null;
+ after18 = null;
+ after19 = null;
+ after20 = null;
+ after21 = null;
+ after22 = null;
+ after23 = null;
+ after24 = null;
+ after25 = null;
+ after26 = null;
+ after27 = null;
+ after28 = null;
+ after29 = null;
+ after30 = null;
+ after31 = null;
+ after32 = null;
+ after33 = null;
+ after34 = null;
+ after35 = null;
+ after36 = null;
+ after37 = null;
+ after38 = null;
+ after39 = null;
+ after40 = null;
+ after41 = null;
+ after42 = null;
+ after43 = null;
+ after44 = null;
+ after45 = null;
+ after46 = null;
+ after47 = null;
+ after48 = null;
+ after49 = null;
+ after50 = null;
+ after51 = null;
+ after52 = null;
+ after53 = null;
+ after54 = null;
+ after55 = null;
+ after56 = null;
+ after57 = null;
+ after58 = null;
+ after59 = null;
+ after60 = null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg SubValue arg2)
+ {
+ after1 = "Object,MethodInfo,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg SuperValue arg2)
+ {
+ after1 = "Object,MethodInfo,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg Object arg2)
+ {
+ after1 = "Object,MethodInfo,SuperClass,float,Object";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg SubValue arg2)
+ {
+ after1 = "Object,MethodInfo,Object,float,SubValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg SuperValue arg2)
+ {
+ after1 = "Object,MethodInfo,Object,float,SuperValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg Object arg2)
+ {
+ after1 = "Object,MethodInfo,Object,float,Object";
+ return null;
+ }
+
+ public Object after1(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg SubValue arg2)
+ {
+ after1 = "Object,JoinPointInfo,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after1 = "SuperClass,MethodInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after1 = "Object,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after1 = "Object,MethodInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after1 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after1 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after1 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after1 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after1 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after1(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after1 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after1(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after1 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after1(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after1 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after1(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after1 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after1(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after1 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after1 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after1(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after1 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after1 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after1 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after1 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after1(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after1 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after1 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after1 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after1 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after1(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after1 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after1(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after1 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after1 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after1 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after1(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after1 = "SuperClass,JoinPointInfo,SuperValue,SubValue";
+ return null;
+ }
+
+ public SubClass after1(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after1 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after1(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after1 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after1(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after1 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after1 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after1(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after1 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after1(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after1 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after1(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after1 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after1(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after1 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after1(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after1 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after1(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after1 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after1(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after1 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after1(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after1 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after1(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after1 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after1(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after1 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after1(@Return SuperClass valueReturned)
+ {
+ after1 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after1(@Return Object valueReturned)
+ {
+ after1 = "Object,Object";
+ return null;
+ }
+
+ public void after1(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after1 = "void,float,SubValue";
+ }
+
+ public Object after1(@Arg float arg1)
+ {
+ after1 = "Object,float";
+ return null;
+ }
+
+ public void after1(@Arg SubValue arg2)
+ {
+ after1 = "void,SubValue";
+ }
+
+ public void after1(@Arg SuperValue arg2)
+ {
+ after1 = "void,SuperValue";
+ }
+
+ public void after1()
+ {
+ after1 = "void";
+ }
+
+ public void after1(@Arg int arg1)
+ {
+ after1 = "void,int";
+ }
+
+ /* AFTER2 ADVICE */
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg SuperValue arg2)
+ {
+ after2 = "Object,MethodInfo,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg Object arg2)
+ {
+ after2 = "Object,MethodInfo,SuperClass,float,Object";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg SubValue arg2)
+ {
+ after2 = "Object,MethodInfo,Object,float,SubValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg SuperValue arg2)
+ {
+ after2 = "Object,MethodInfo,Object,float,SuperValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg Object arg2)
+ {
+ after2 = "Object,MethodInfo,Object,float,Object";
+ return null;
+ }
+
+ public Object after2(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg SubValue arg2)
+ {
+ after2 = "Object,JoinPointInfo,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after2(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after2 = "SuperClass,MethodInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after2 = "Object,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after2 = "Object,MethodInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after2(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after2 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after2(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after2 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after2 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after2(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after2 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after2(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after2 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after2(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after2 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after2(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after2 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after2(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after2 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after2(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after2 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after2(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after2 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after2 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after2(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after2 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after2 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after2 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after2 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after2(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after2 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after2 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after2 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after2 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after2(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after2 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after2 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after2 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after2(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after2 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after2(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after2 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after2(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after2 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after2(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after2 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after2 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after2(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after2 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after2(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after2 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after2(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after2 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after2(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after2 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after2(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after2 = "Object,MethodInfo,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after2(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after2 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after2(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after2 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after2(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after2 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after2(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after2 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after2(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after2 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after2(@Return SuperClass valueReturned)
+ {
+ after2 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after2(@Return Object valueReturned)
+ {
+ after2 = "Object,Object";
+ return null;
+ }
+
+ public void after2(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after2 = "void,float,SubValue";
+ }
+
+ public Object after2(@Arg float arg1)
+ {
+ after2 = "Object,float";
+ return null;
+ }
+
+ public void after2(@Arg SubValue arg2)
+ {
+ after2 = "void,SubValue";
+ }
+
+ public void after2(@Arg SuperValue arg2)
+ {
+ after2 = "void,SuperValue";
+ }
+
+ public void after2()
+ {
+ after2 = "void";
+ }
+
+ public void after2(@Arg int arg1)
+ {
+ after2 = "void,int";
+ }
+
+ /* AFTER3 ADVICE */
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg Object arg2)
+ {
+ after3 = "Object,MethodInfo,SuperClass,float,Object";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg SubValue arg2)
+ {
+ after3 = "Object,MethodInfo,Object,float,SubValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg SuperValue arg2)
+ {
+ after3 = "Object,MethodInfo,Object,float,SuperValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg Object arg2)
+ {
+ after3 = "Object,MethodInfo,Object,float,Object";
+ return null;
+ }
+
+ public Object after3(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg SubValue arg2)
+ {
+ after3 = "Object,JoinPointInfo,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after3(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after3 = "SuperClass,MethodInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after3 = "Object,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after3 = "Object,MethodInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after3(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after3 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after3(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after3 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after3 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after3(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after3 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after3(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after3 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after3(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after3 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after3(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after3 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after3(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after3 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after3(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after3 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after3(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after3 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after3 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after3(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after3 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after3 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after3 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after3 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after3(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after3 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after3 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after3 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after3 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after3(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after3 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after3(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after3 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after3 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after3 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after3(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after3 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after3(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after3 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after3(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after3 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after3(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after3 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after3 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after3(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after3 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after3(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after3 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after3(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after3 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after3(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after3 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after3(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after3 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after3(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after3 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after3(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after3 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after3(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after3 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after3(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after3 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after3(@Return SuperClass valueReturned)
+ {
+ after3 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after3(@Return Object valueReturned)
+ {
+ after3 = "Object,Object";
+ return null;
+ }
+
+ public void after3(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after3 = "void,float,SubValue";
+ }
+
+ public Object after3(@Arg float arg1)
+ {
+ after3 = "Object,float";
+ return null;
+ }
+
+ public void after3(@Arg SubValue arg2)
+ {
+ after3 = "void,SubValue";
+ }
+
+ public void after3(@Arg SuperValue arg2)
+ {
+ after3 = "void,SuperValue";
+ }
+
+ public void after3()
+ {
+ after3 = "void";
+ }
+
+ public void after3(@Arg int arg1)
+ {
+ after3 = "void,int";
+ }
+
+ /* AFTER4 ADVICE */
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg SubValue arg2)
+ {
+ after4 = "Object,MethodInfo,Object,float,SubValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg SuperValue arg2)
+ {
+ after4 = "Object,MethodInfo,Object,float,SuperValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg Object arg2)
+ {
+ after4 = "Object,MethodInfo,Object,float,Object";
+ return null;
+ }
+
+ public Object after4(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg SubValue arg2)
+ {
+ after4 = "Object,JoinPointInfo,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after4(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after4 = "SuperClass,MethodInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after4 = "Object,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after4 = "Object,MethodInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after4(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after4 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after4(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after4 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after4 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after4(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after4 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after4(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after4 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after4(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after4 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after4(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after4 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after4(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after4 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after4(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after4 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after4(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after4 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after4 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after4(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after4 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after4 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after4 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after4 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after4(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after4 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after4 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after4 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after4 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after4(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after4 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after4(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after4 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after4 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after4 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after4(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after4 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after4(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after4 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after4(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after4 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after4(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after4 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after4 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after4(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after4 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after4(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after4 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after4(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after4 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after4(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after4 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after4(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after4 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after4(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after4 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after4(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after4 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after4(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after4 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after4(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after4 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after4(@Return SuperClass valueReturned)
+ {
+ after4 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after4(@Return Object valueReturned)
+ {
+ after4 = "Object,Object";
+ return null;
+ }
+
+ public void after4(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after4 = "void,float,SubValue";
+ }
+
+ public Object after4(@Arg float arg1)
+ {
+ after4 = "Object,float";
+ return null;
+ }
+
+ public void after4(@Arg SubValue arg2)
+ {
+ after4 = "void,SubValue";
+ }
+
+ public void after4(@Arg SuperValue arg2)
+ {
+ after4 = "void,SuperValue";
+ }
+
+ public void after4()
+ {
+ after4 = "void";
+ }
+
+ public void after4(@Arg int arg1)
+ {
+ after4 = "void,int";
+ }
+
+ /* AFTER5 ADVICE */
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg SuperValue arg2)
+ {
+ after5 = "Object,MethodInfo,Object,float,SuperValue";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg Object arg2)
+ {
+ after5 = "Object,MethodInfo,Object,float,Object";
+ return null;
+ }
+
+ public Object after5(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg SubValue arg2)
+ {
+ after5 = "Object,JoinPointInfo,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after5(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after5 = "SuperClass,MethodInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after5 = "Object,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after5 = "Object,MethodInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after5(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after5 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after5(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after5 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after5 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after5(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after5 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after5(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after5 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after5(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after5 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after5(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after5 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after5(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after5 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after5(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after5 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after5(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after5 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after5(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after5 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after5(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after5 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after5(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after5 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after5 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after5 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after5(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after5 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after5 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after5 = "Object,MethodInfo,float,SuperClass";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after5 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after5(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after5 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after5(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after5 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after5 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after5 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after5(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after5 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after5(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after5 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after5(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after5 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after5(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after5 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after5(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after5 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after5(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after5 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after5(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after5 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after5(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after5 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after5(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after5 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after5(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after5 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after5(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after5 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after5(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after5 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after5(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after5 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after5(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after5 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after5(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after5 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after5(@Return SuperClass valueReturned)
+ {
+ after5 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after5(@Return Object valueReturned)
+ {
+ after5 = "Object,Object";
+ return null;
+ }
+
+ public void after5(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after5 = "void,float,SubValue";
+ }
+
+ public Object after5(@Arg float arg1)
+ {
+ after5 = "Object,float";
+ return null;
+ }
+
+ public void after5(@Arg SubValue arg2)
+ {
+ after5 = "void,SubValue";
+ }
+
+ public void after5(@Arg SuperValue arg2)
+ {
+ after5 = "void,SuperValue";
+ }
+
+ public void after5()
+ {
+ after5 = "void";
+ }
+
+ public void after5(@Arg int arg1)
+ {
+ after5 = "void,int";
+ }
+
+ /* AFTER6 ADVICE */
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1, @Arg Object arg2)
+ {
+ after6 = "Object,MethodInfo,Object,float,Object";
+ return null;
+ }
+
+ public Object after6(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg SubValue arg2)
+ {
+ after6 = "Object,JoinPointInfo,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after6(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after6 = "SuperClass,MethodInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after6 = "Object,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after6 = "Object,MethodInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after6(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after6 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after6(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after6 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after6 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after6(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after6 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after6(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after6 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after6(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after6 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after6(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after6 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after6(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after6 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after6(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after6 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after6(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after6 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after6(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after6 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after6(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after6 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after6(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after6 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after6 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after6 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after6(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after6 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after6 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after6 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after6 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after6(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after6 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after6(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after6 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after6 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after6 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after6(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after6 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after6(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after6 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after6(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after6 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after6(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after6 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after6(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after6 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after6(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after6 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after6(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after6 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after6(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after6 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after6(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after6 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after6(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after6 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after6(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after6 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after6(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after6 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after6(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after6 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after6(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after6 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after6(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after6 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after6(@Return SuperClass valueReturned)
+ {
+ after6 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after6(@Return Object valueReturned)
+ {
+ after6 = "Object,Object";
+ return null;
+ }
+
+ public void after6(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after6 = "void,float,SubValue";
+ }
+
+ public Object after6(@Arg float arg1)
+ {
+ after6 = "Object,float";
+ return null;
+ }
+
+ public void after6(@Arg SubValue arg2)
+ {
+ after6 = "void,SubValue";
+ }
+
+ public void after6(@Arg SuperValue arg2)
+ {
+ after6 = "void,SuperValue";
+ }
+
+ public void after6()
+ {
+ after6 = "void";
+ }
+
+ public void after6(@Arg int arg1)
+ {
+ after6 = "void,int";
+ }
+
+ /* AFTER7 ADVICE */
+
+ public Object after7(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1, @Arg SubValue arg2)
+ {
+ after7 = "Object,JoinPointInfo,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after7(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after7 = "SuperClass,MethodInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after7 = "Object,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after7 = "Object,MethodInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after7(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after7 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after7(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after7 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after7 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after7(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after7 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after7(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after7 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after7(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after7 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after7(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after7 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after7(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after7 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after7(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after7 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after7(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after7 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after7(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after7 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after7(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after7 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after7(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after7 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after7 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after7 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after7(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after7 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after7 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after7 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after7 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after7(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after7 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after7(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after7 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after7 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after7 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after7(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after7 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after7(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after7 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after7(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after7 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after7(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after7 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after7(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after7 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after7(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after7 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after7(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after7 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after7(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after7 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after7(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after7 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after7(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after7 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after7(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after7 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after7(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after7 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after7(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after7 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after7(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after7 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after7(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after7 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after7(@Return SuperClass valueReturned)
+ {
+ after7 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after7(@Return Object valueReturned)
+ {
+ after7 = "Object,SuperClass";
+ return null;
+ }
+
+ public void after7(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after7 = "void,float,SubValue";
+ }
+
+ public Object after7(@Arg float arg1)
+ {
+ after7 = "Object,float";
+ return null;
+ }
+
+ public void after7(@Arg SubValue arg2)
+ {
+ after7 = "void,SubValue";
+ }
+
+ public void after7(@Arg SuperValue arg2)
+ {
+ after7 = "void,SuperValue";
+ }
+
+ public void after7()
+ {
+ after7 = "void";
+ }
+
+ public void after7(@Arg int arg1)
+ {
+ after7 = "void,int";
+ }
+
+ /* AFTER8 ADVICE */
+
+ public SuperClass after8(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after8 = "SuperClass,MethodInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after8 = "Object,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after8 = "Object,MethodInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after8(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after8 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after8(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after8 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after8 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after8(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after8 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after8(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after8 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after8(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after8 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after8(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after8 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after8(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after8 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after8(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after8 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after8(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after8 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after8(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after8 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after8(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after8 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after8(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after8 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after8 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after8 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after8(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after8 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after8 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after8 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after8 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after8(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after8 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after8(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after8 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after8 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after8 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after8(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after8 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after8(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after8 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after8(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after8 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after8(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after8 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after8(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after8 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after8(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after8 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after8(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after8 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after8(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after8 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after8(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after8 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after8(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after8 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after8(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after8 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after8(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after8 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after8(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after8 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after8(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after8 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after8(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after8 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after8(@Return SuperClass valueReturned)
+ {
+ after8 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after8(@Return Object valueReturned)
+ {
+ after7 = "Object,SuperClass";
+ return null;
+ }
+
+ public void after8(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after8 = "void,float,SubValue";
+ }
+
+ public Object after8(@Arg float arg1)
+ {
+ after8 = "Object,float";
+ return null;
+ }
+
+ public void after8(@Arg SubValue arg2)
+ {
+ after8 = "void,SubValue";
+ }
+
+ public void after8(@Arg SuperValue arg2)
+ {
+ after8 = "void,SuperValue";
+ }
+
+ public void after8()
+ {
+ after8 = "void";
+ }
+
+ public void after8(@Arg int arg1)
+ {
+ after8 = "void,int";
+ }
+
+ /* AFTER9 ADVICE */
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after9 = "Object,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after9 = "Object,MethodInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after9(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after9 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after9(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after9 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after9 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after9(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after9 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after9(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after9 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after9(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after9 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after9(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after9 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after9(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after9 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after9(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after9 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after9(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after9 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after9(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after9 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after9(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after9 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after9(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after9 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after9 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after9 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after9(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after9 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after9 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after9 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after9 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after9(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after9 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after9(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after9 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after9 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after9 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after9(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after9 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after9(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after9 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after9(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after9 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after9(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after9 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after9(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after9 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after9(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after9 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after9(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after9 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after9(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after9 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after9(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after9 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after9(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after9 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after9(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after9 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after9(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after9 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after9(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after9 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after9(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after9 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after9(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after9 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after9(@Return SuperClass valueReturned)
+ {
+ after9 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after9(@Return Object valueReturned)
+ {
+ after9 = "Object,Object";
+ return null;
+ }
+
+ public void after9(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after9 = "void,float,SubValue";
+ }
+
+ public Object after9(@Arg float arg1)
+ {
+ after9 = "Object,float";
+ return null;
+ }
+
+ public void after9(@Arg SubValue arg2)
+ {
+ after9 = "void,SubValue";
+ }
+
+ public void after9(@Arg SuperValue arg2)
+ {
+ after9 = "void,SuperValue";
+ }
+
+ public void after9()
+ {
+ after9 = "void";
+ }
+
+ public void after9(@Arg int arg1)
+ {
+ after9 = "void,int";
+ }
+
+ /* AFTER10 ADVICE */
+
+ public Object after10(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after10 = "Object,MethodInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after10(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after10 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after10(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after10 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after10(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after10 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after10(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after10 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after10(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after10 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after10(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after10 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after10(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after10 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after10(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after10 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after10(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after10 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after10(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after10 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after10(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after10 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after10(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after10 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after10(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after10 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after10(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after10 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after10(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after10 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after10(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after10 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after10(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after10 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after10(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after10 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after10(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after10 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after10(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after10 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after10(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after10 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after10(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after10 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after10(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after10 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after10(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after10 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after10(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after10 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after10(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after10 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after10(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after10 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after10(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after10 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after10(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after10 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after10(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after10 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after10(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after10 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after10(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after10 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after10(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after10 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after10(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after10 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after10(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after10 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after10(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after10 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after10(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after10 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after10(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after10 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after10(@Return SuperClass valueReturned)
+ {
+ after10 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after10(@Return Object valueReturned)
+ {
+ after10 = "Object,Object";
+ return null;
+ }
+
+ public void after10(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after10 = "void,float,SubValue";
+ }
+
+ public Object after10(@Arg float arg1)
+ {
+ after10 = "Object,float";
+ return null;
+ }
+
+ public void after10(@Arg SubValue arg2)
+ {
+ after10 = "void,SubValue";
+ }
+
+ public void after10(@Arg SuperValue arg2)
+ {
+ after10 = "void,SuperValue";
+ }
+
+ public void after10()
+ {
+ after10 = "void";
+ }
+
+ public void after10(@Arg int arg1)
+ {
+ after10 = "void,int";
+ }
+
+ /* AFTER11 ADVICE */
+
+ public SuperClass after11(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after11 = "SuperClass,MethodInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SuperClass after11(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after11 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after11(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after11 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after11(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after11 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after11(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after11 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after11(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after11 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after11(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after11 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after11(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after11 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after11(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after11 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after11(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after11 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after11(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after11 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after11(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after11 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after11(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after11 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after11(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after11 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after11(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after11 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after11(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after11 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after11(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after11 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after11(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after11 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after11(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after11 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after11(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after11 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after11(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after11 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after11(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after11 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after11(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after11 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after11(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after11 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after11(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after11 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after11(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after11 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after11(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after11 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after11(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after11 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after11(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after11 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after11(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after11 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after11(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after11 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after11(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after11 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after11(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after11 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after11(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after11 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after11(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after11 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after11(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after11 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after11(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after11 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after11(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after11 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after11(@Return SuperClass valueReturned)
+ {
+ after11 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after11(@Return Object valueReturned)
+ {
+ after11 = "Object,Object";
+ return null;
+ }
+
+ public void after11(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after11 = "void,float,SubValue";
+ }
+
+ public Object after11(@Arg float arg1)
+ {
+ after11 = "Object,float";
+ return null;
+ }
+
+ public void after11(@Arg SubValue arg2)
+ {
+ after11 = "void,SubValue";
+ }
+
+ public void after11(@Arg SuperValue arg2)
+ {
+ after11 = "void,SuperValue";
+ }
+
+ public void after11()
+ {
+ after11 = "void";
+ }
+
+ public void after11(@Arg int arg1)
+ {
+ after11 = "void,int";
+ }
+
+ /* AFTER12 ADVICE */
+
+ public SuperClass after12(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SubValue arg2)
+ {
+ after12 = "SuperClass,MethodInfo,Object,SubValue";
+ return null;
+ }
+
+ public Object after12(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after12 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after12(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after12 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after12(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after12 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after12(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after12 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after12(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after12 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after12(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after12 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after12(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after12 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after12(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after12 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after12(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after12 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after12(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after12 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after12(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after12 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after12(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after12 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after12(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after12 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after12(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after12 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after12(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after12 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after12(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after12 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after12(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after12 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after12(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after12 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after12(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after12 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after12(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after12 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after12(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after12 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after12(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after12 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after12(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after12 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after12(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after12 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after12(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after12 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after12(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after12 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after12(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after12 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after12(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after12 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after12(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after12 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after12(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after12 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after12(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after12 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after12(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after12 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after12(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after12 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after12(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after12 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after12(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after12 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after12(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after12 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after12(@Return SuperClass valueReturned)
+ {
+ after12 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after12(@Return Object valueReturned)
+ {
+ after12 = "Object,Object";
+ return null;
+ }
+
+ public void after12(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after12 = "void,float,SubValue";
+ }
+
+ public Object after12(@Arg float arg1)
+ {
+ after12 = "Object,float";
+ return null;
+ }
+
+ public void after12(@Arg SubValue arg2)
+ {
+ after12 = "void,SubValue";
+ }
+
+ public void after12(@Arg SuperValue arg2)
+ {
+ after12 = "void,SuperValue";
+ }
+
+ public void after12()
+ {
+ after12 = "void";
+ }
+
+ public void after12(@Arg int arg1)
+ {
+ after12 = "void,int";
+ }
+
+ /* AFTER13 ADVICE */
+
+ public Object after13(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned,
+ @Arg float arg1)
+ {
+ after13 = "Object,MethodInfo,Object,float";
+ return null;
+ }
+
+ public SubClass after13(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after13 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after13(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after13 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after13(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after13 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after13(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after13 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after13(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after13 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after13(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after13 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after13(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after13 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after13(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after13 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after13(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after13 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after13(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after13 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after13(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after13 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after13(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after13 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after13(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after13 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after13(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after13 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after13(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after13 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after13(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after13 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after13(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after13 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after13(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after13 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after13(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after13 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after13(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after13 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after13(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after13 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after13(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after13 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after13(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after13 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after13(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after13 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after13(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after13 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after13(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after13 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after13(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after13 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after13(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after13 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after13(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after13 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after13(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after13 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after13(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after13 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after13(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after13 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after13(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after13 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after13(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after13 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after13(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after13 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after13(@Return SuperClass valueReturned)
+ {
+ after13 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after13(@Return Object valueReturned)
+ {
+ after13 = "Object,Object";
+ return null;
+ }
+
+ public void after13(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after13 = "void,float,SubValue";
+ }
+
+ public Object after13(@Arg float arg1)
+ {
+ after13 = "Object,float";
+ return null;
+ }
+
+ public void after13(@Arg SubValue arg2)
+ {
+ after13 = "void,SubValue";
+ }
+
+ public void after13(@Arg SuperValue arg2)
+ {
+ after13 = "void,SuperValue";
+ }
+
+ public void after13()
+ {
+ after13 = "void";
+ }
+
+ public void after13(@Arg int arg1)
+ {
+ after13 = "void,int";
+ }
+
+ /* AFTER14 ADVICE */
+
+ public SubClass after14(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg SuperValue arg2)
+ {
+ after14 = "SubClass,MethodInfo,Object,SuperValue";
+ return null;
+ }
+
+ public SubClass after14(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after14 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after14(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after14 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after14(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after14 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after14(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after14 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after14(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after14 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after14(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after14 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after14(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after14 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after14(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after14 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after14(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after14 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after14(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after14 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after14(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after14 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after14(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after14 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after14(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after14 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after14(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after14 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after14(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after14 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after14(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after14 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after14(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after14 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after14(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after14 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after14(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after14 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after14(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after14 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after14(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after14 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after14(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after14 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after14(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after14 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after14(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after14 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after14(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after14 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after14(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after14 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after14(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after14 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after14(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after14 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after14(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after14 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after14(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after14 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after14(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after14 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after14(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after14 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after14(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after14 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after14(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after14 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after14(@Return SuperClass valueReturned)
+ {
+ after14 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after14(@Return Object valueReturned)
+ {
+ after14 = "Object,Object";
+ return null;
+ }
+
+ public void after14(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after14 = "void,float,SubValue";
+ }
+
+ public Object after14(@Arg float arg1)
+ {
+ after14 = "Object,float";
+ return null;
+ }
+
+ public void after14(@Arg SubValue arg2)
+ {
+ after14 = "void,SubValue";
+ }
+
+ public void after14(@Arg SuperValue arg2)
+ {
+ after14 = "void,SuperValue";
+ }
+
+ public void after14()
+ {
+ after14 = "void";
+ }
+
+ public void after14(@Arg int arg1)
+ {
+ after14 = "void,int";
+ }
+
+ /* AFTER15 ADVICE */
+
+ public SubClass after15(@JoinPoint MethodInfo joinPointInfo,
+ @Return Object valueReturned, @Arg Object arg2)
+ {
+ after15 = "SubClass,MethodInfo,Object,Object";
+ return null;
+ }
+
+ public SuperClass after15(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after15 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after15(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after15 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after15(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after15 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after15(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after15 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after15(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after15 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after15(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after15 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after15(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after15 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after15(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after15 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after15(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after15 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after15(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after15 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after15(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after15 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after15(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after15 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after15(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after15 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after15(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after15 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after15(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after15 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after15(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after15 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after15(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after15 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after15(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after15 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after15(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after15 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after15(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after15 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after15(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after15 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after15(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after15 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after15(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after15 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after15(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after15 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after15(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after15 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after15(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after15 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after15(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after15 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after15(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after15 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after15(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after15 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after15(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after15 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after15(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after15 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after15(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after15 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after15(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after15 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after15(@Return SuperClass valueReturned)
+ {
+ after15 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after15(@Return Object valueReturned)
+ {
+ after15 = "Object,Object";
+ return null;
+ }
+
+ public void after15(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after15 = "void,float,SubValue";
+ }
+
+ public Object after15(@Arg float arg1)
+ {
+ after15 = "Object,float";
+ return null;
+ }
+
+ public void after15(@Arg SubValue arg2)
+ {
+ after15 = "void,SubValue";
+ }
+
+ public void after15(@Arg SuperValue arg2)
+ {
+ after15 = "void,SuperValue";
+ }
+
+ public void after15()
+ {
+ after15 = "void";
+ }
+
+ public void after15(@Arg int arg1)
+ {
+ after15 = "void,int";
+ }
+
+ /* AFTER16 ADVICE */
+
+ public SuperClass after16(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after16 = "SuperClass,JoinPointInfo,SuperClass,SubValue";
+ return null;
+ }
+
+ public SubClass after16(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after16 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after16(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after16 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after16(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after16 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after16(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after16 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after16(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after16 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after16(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after16 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after16(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after16 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after16(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after16 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after16(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after16 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after16(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after16 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after16(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after16 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after16(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after16 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after16(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after16 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after16(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after16 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after16(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after16 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after16(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after16 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after16(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after16 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after16(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after16 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after16(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after16 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after16(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after16 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after16(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after16 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after16(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after16 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after16(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after16 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after16(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after16 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after16(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after16 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after16(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after16 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after16(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after16 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after16(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after16 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after16(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after16 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after16(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after16 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after16(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after16 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after16(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after16 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after16(@Return SuperClass valueReturned)
+ {
+ after16 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after16(@Return Object valueReturned)
+ {
+ after16 = "Object,Object";
+ return null;
+ }
+
+ public void after16(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after16 = "void,float,SubValue";
+ }
+
+ public Object after16(@Arg float arg1)
+ {
+ after16 = "Object,float";
+ return null;
+ }
+
+ public void after16(@Arg SubValue arg2)
+ {
+ after16 = "void,SubValue";
+ }
+
+ public void after16(@Arg SuperValue arg2)
+ {
+ after16 = "void,SuperValue";
+ }
+
+ public void after16()
+ {
+ after16 = "void";
+ }
+
+ public void after16(@Arg int arg1)
+ {
+ after16 = "void,int";
+ }
+
+ /* AFTER17 ADVICE */
+
+ public SubClass after17(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after17 = "SubClass,JoinPointInfo,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after17(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after17 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after17(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after17 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after17(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after17 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after17(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after17 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after17(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after17 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after17(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after17 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after17(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after17 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after17(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after17 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after17(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after17 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after17(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after17 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after17(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after17 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after17(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after17 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after17(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after17 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after17(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after17 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after17(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after17 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after17(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after17 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after17(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after17 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after17(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after17 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after17(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after17 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after17(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after17 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after17(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after17 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after17(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after17 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after17(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after17 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after17(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after17 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after17(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after17 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after17(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after17 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after17(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after17 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after17(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after17 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after17(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after17 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after17(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after17 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after17(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after17 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after17(@Return SuperClass valueReturned)
+ {
+ after17 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after17(@Return Object valueReturned)
+ {
+ after17 = "Object,Object";
+ return null;
+ }
+
+ public void after17(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after17 = "void,float,SubValue";
+ }
+
+ public Object after17(@Arg float arg1)
+ {
+ after17 = "Object,float";
+ return null;
+ }
+
+ public void after17(@Arg SubValue arg2)
+ {
+ after17 = "void,SubValue";
+ }
+
+ public void after17(@Arg SuperValue arg2)
+ {
+ after17 = "void,SuperValue";
+ }
+
+ public void after17()
+ {
+ after17 = "void";
+ }
+
+ public void after17(@Arg int arg1)
+ {
+ after17 = "void,int";
+ }
+
+ /* AFTER18 ADVICE */
+
+ public SubClass after18(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after18 = "SubClass,JoinPointInfo,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after18(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after18 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after18(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after18 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after18(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after18 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after18(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after18 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after18(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after18 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after18(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after18 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after18(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after18 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after18(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after18 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after18(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after18 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after18(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after18 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after18(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after18 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after18(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after18 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after18(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after18 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after18(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after18 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after18(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after18 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after18(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after18 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after18(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after18 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after18(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after18 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after18(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after18 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after18(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after18 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after18(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after18 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after18(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after18 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after18(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after18 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after18(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after18 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after18(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after18 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after18(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after18 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after18(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after18 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after18(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after18 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after18(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after18 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after18(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after18 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after18(@Return SuperClass valueReturned)
+ {
+ after18 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after18(@Return Object valueReturned)
+ {
+ after18 = "Object,Object";
+ return null;
+ }
+
+ public void after18(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after18 = "void,float,SubValue";
+ }
+
+ public Object after18(@Arg float arg1)
+ {
+ after18 = "Object,float";
+ return null;
+ }
+
+ public void after18(@Arg SubValue arg2)
+ {
+ after18 = "void,SubValue";
+ }
+
+ public void after18(@Arg SuperValue arg2)
+ {
+ after18 = "void,SuperValue";
+ }
+
+ public void after18()
+ {
+ after18 = "void";
+ }
+
+ public void after18(@Arg int arg1)
+ {
+ after18 = "void,int";
+ }
+
+ /* AFTER19 ADVICE */
+
+ public SuperClass after19(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after19 = "SuperClass,JoinPointInfo,SuperClass,Object";
+ return null;
+ }
+
+ public SubClass after19(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after19 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after19(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after19 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after19(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after19 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after19(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after19 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after19(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after19 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after19(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after19 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after19(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after19 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after19(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after19 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after19(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after19 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after19(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after19 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after19(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after19 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after19(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after19 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after19(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after19 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after19(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after19 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after19(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after19 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after19(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after19 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after19(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after19 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after19(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after19 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after19(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after19 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after19(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after19 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after19(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after19 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after19(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after19 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after19(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after19 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after19(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after19 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after19(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after19 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after19(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after19 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after19(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after19 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after19(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after19 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after19(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after19 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after19(@Return SuperClass valueReturned)
+ {
+ after19 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after19(@Return Object valueReturned)
+ {
+ after19 = "Object,Object";
+ return null;
+ }
+
+ public void after19(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after19 = "void,float,SubValue";
+ }
+
+ public Object after19(@Arg float arg1)
+ {
+ after19 = "Object,float";
+ return null;
+ }
+
+ public void after19(@Arg SubValue arg2)
+ {
+ after19 = "void,SubValue";
+ }
+
+ public void after19(@Arg SuperValue arg2)
+ {
+ after19 = "void,SuperValue";
+ }
+
+ public void after19()
+ {
+ after19 = "void";
+ }
+
+ public void after19(@Arg int arg1)
+ {
+ after19 = "void,int";
+ }
+
+ /* AFTER20 ADVICE */
+
+ public SubClass after20(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after20 = "SubClass,Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after20(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after20 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after20(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after20 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after20(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after20 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after20(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after20 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after20(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after20 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after20(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after20 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after20(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after20 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after20(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after20 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after20(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after20 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after20(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after20 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after20(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after20 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after20(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after20 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after20(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after20 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after20(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after20 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after20(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after20 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after20(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after20 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after20(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after20 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after20(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after20 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after20(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after20 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after20(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after20 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after20(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after20 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after20(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after20 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after20(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after20 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after20(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after20 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after20(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after20 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after20(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after20 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after20(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after20 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after20(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after20 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after20(@Return SuperClass valueReturned)
+ {
+ after20 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after20(@Return Object valueReturned)
+ {
+ after20 = "Object,Object";
+ return null;
+ }
+
+ public void after20(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after20 = "void,float,SubValue";
+ }
+
+ public Object after20(@Arg float arg1)
+ {
+ after20 = "Object,float";
+ return null;
+ }
+
+ public void after20(@Arg SubValue arg2)
+ {
+ after20 = "void,SubValue";
+ }
+
+ public void after20(@Arg SuperValue arg2)
+ {
+ after20 = "void,SuperValue";
+ }
+
+ public void after20()
+ {
+ after20 = "void";
+ }
+
+ public void after20(@Arg int arg1)
+ {
+ after20 = "void,int";
+ }
+
+ /* AFTER21 ADVICE */
+
+ public Object after21(@JoinPoint Object joinPointInfo, @Return SuperClass valueReturned,
+ @Arg float arg1)
+ {
+ after21 = "Object,Object,SuperClass,float";
+ return null;
+ }
+
+ public SubClass after21(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after21 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after21(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after21 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after21(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after21 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after21(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after21 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after21(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after21 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after21(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after21 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after21(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after21 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after21(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after21 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after21(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after21 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after21(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after21 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after21(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after21 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after21(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after21 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after21(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after21 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after21(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after21 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after21(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after21 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after21(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after21 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after21(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after21 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after21(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after21 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after21(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after21 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after21(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after21 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after21(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after21 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after21(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after21 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after21(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after21 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after21(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after21 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after21(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after21 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after21(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after21 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after21(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after21 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after21(@Return SuperClass valueReturned)
+ {
+ after21 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after21(@Return Object valueReturned)
+ {
+ after21 = "Object,Object";
+ return null;
+ }
+
+ public void after21(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after21 = "void,float,SubValue";
+ }
+
+ public Object after21(@Arg float arg1)
+ {
+ after21 = "Object,float";
+ return null;
+ }
+
+ public void after21(@Arg SubValue arg2)
+ {
+ after21 = "void,SubValue";
+ }
+
+ public void after21(@Arg SuperValue arg2)
+ {
+ after21 = "void,SuperValue";
+ }
+
+ public void after21()
+ {
+ after21 = "void";
+ }
+
+ public void after21(@Arg int arg1)
+ {
+ after21 = "void,int";
+ }
+
+ /* AFTER22 ADVICE */
+
+ public SubClass after22(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after22 = "SubClass,Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public Object after22(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after22 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after22(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after22 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after22(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after22 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after22(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after22 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after22(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after22 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after22(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after22 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after22(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after22 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after22(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after22 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after22(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after22 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after22(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after22 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after22(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after22 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after22(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after22 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after22(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after22 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after22(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after22 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after22(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after22 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after22(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after22 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after22(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after22 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after22(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after22 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after22(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after22 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after22(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after22 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after22(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after22 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after22(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after22 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after22(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after22 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after22(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after22 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after22(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after22 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after22(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after22 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after22(@Return SuperClass valueReturned)
+ {
+ after22 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after22(@Return Object valueReturned)
+ {
+ after22 = "Object,Object";
+ return null;
+ }
+
+ public void after22(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after22 = "void,float,SubValue";
+ }
+
+ public Object after22(@Arg float arg1)
+ {
+ after22 = "Object,float";
+ return null;
+ }
+
+ public void after22(@Arg SubValue arg2)
+ {
+ after22 = "void,SubValue";
+ }
+
+ public void after22(@Arg SuperValue arg2)
+ {
+ after22 = "void,SuperValue";
+ }
+
+ public void after22()
+ {
+ after22 = "void";
+ }
+
+ public void after22(@Arg int arg1)
+ {
+ after22 = "void,int";
+ }
+
+ /* AFTER23 ADVICE */
+
+ public Object after23(@JoinPoint Object joinPointInfo,
+ @Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after23 = "Object,Object,SuperClass,Object";
+ return null;
+ }
+
+ public Object after23(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after23 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after23(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after23 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after23(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after23 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after23(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after23 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after23(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after23 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after23(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after23 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after23(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after23 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after23(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after23 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after23(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after23 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after23(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after23 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after23(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after23 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after23(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after23 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after23(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after23 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after23(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after23 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after23(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after23 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after23(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after23 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after23(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after23 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after23(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after23 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after23(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after23 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after23(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after23 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after23(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after23 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after23(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after23 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after23(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after23 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after23(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after23 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after23(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after23 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after23(@Return SuperClass valueReturned)
+ {
+ after23 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after23(@Return Object valueReturned)
+ {
+ after23 = "Object,Object";
+ return null;
+ }
+
+ public void after23(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after23 = "void,float,SubValue";
+ }
+
+ public Object after23(@Arg float arg1)
+ {
+ after23 = "Object,float";
+ return null;
+ }
+
+ public void after23(@Arg SubValue arg2)
+ {
+ after23 = "void,SubValue";
+ }
+
+ public void after23(@Arg SuperValue arg2)
+ {
+ after23 = "void,SuperValue";
+ }
+
+ public void after23()
+ {
+ after23 = "void";
+ }
+
+ public void after23(@Arg int arg1)
+ {
+ after23 = "void,int";
+ }
+
+ /* AFTER24 ADVICE */
+
+ public Object after24(@JoinPoint MethodInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after24 = "Object,MethodInfo,SuperClass";
+ return null;
+ }
+
+ public Object after24(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after24 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after24(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after24 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after24(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after24 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after24(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after24 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after24(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after24 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after24(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after24 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after24(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after24 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after24(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after24 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after24(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after24 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after24(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after24 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after24(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after24 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after24(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after24 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after24(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after24 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after24(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after24 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after24(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after24 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after24(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after24 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after24(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after24 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after24(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after24 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after24(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after24 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after24(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after24 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after24(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after24 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after24(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after24 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after24(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after24 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after24(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after24 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after24(@Return SuperClass valueReturned)
+ {
+ after24 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after24(@Return Object valueReturned)
+ {
+ after24 = "Object,Object";
+ return null;
+ }
+
+ public void after24(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after24 = "void,float,SubValue";
+ }
+
+ public Object after24(@Arg float arg1)
+ {
+ after24 = "Object,float";
+ return null;
+ }
+
+ public void after24(@Arg SubValue arg2)
+ {
+ after24 = "void,SubValue";
+ }
+
+ public void after24(@Arg SuperValue arg2)
+ {
+ after24 = "void,SuperValue";
+ }
+
+ public void after24()
+ {
+ after24 = "void";
+ }
+
+ public void after24(@Arg int arg1)
+ {
+ after24 = "void,int";
+ }
+
+ /* AFTER25 ADVICE */
+
+ public Object after25(@JoinPoint MethodInfo joinPointInfo, @Return Object valueReturned)
+ {
+ after25 = "Object,MethodInfo,Object";
+ return null;
+ }
+
+ public Object after25(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after25 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after25(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after25 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after25(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after25 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after25(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after25 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after25(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after25 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after25(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after25 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after25(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after25 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after25(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after25 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after25(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after25 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after25(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after25 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after25(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after25 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after25(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after25 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after25(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after25 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after25(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after25 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after25(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after25 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after25(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after25 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after25(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after25 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after25(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after25 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after25(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after25 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after25(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after25 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after25(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after25 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after25(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after25 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after25(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after25 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after25(@Return SuperClass valueReturned)
+ {
+ after25 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after25(@Return Object valueReturned)
+ {
+ after25 = "Object,Object";
+ return null;
+ }
+
+ public void after25(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after25 = "void,float,SubValue";
+ }
+
+ public Object after25(@Arg float arg1)
+ {
+ after25 = "Object,float";
+ return null;
+ }
+
+ public void after25(@Arg SubValue arg2)
+ {
+ after25 = "void,SubValue";
+ }
+
+ public void after25(@Arg SuperValue arg2)
+ {
+ after25 = "void,SuperValue";
+ }
+
+ public void after25()
+ {
+ after25 = "void";
+ }
+
+ public void after25(@Arg int arg1)
+ {
+ after25 = "void,int";
+ }
+
+ /* AFTER26 ADVICE */
+
+ public Object after26(@JoinPoint JoinPointInfo joinPointInfo,
+ @Return SuperClass valueReturned)
+ {
+ after26 = "Object,JoinPointInfo,SuperClass";
+ return null;
+ }
+
+ public Object after26(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after26 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after26(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after26 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after26(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after26 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after26(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after26 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after26(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after26 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after26(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after26 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after26(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after26 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after26(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after26 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after26(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after26 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after26(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after26 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after26(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after26 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after26(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after26 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after26(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after26 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after26(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after26 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after26(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after26 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after26(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after26 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after26(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after26 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after26(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after26 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after26(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after26 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after26(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after26 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after26(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after26 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after26(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after26 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after26(@Return SuperClass valueReturned)
+ {
+ after26 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after26(@Return Object valueReturned)
+ {
+ after26 = "Object,Object";
+ return null;
+ }
+
+ public void after26(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after26 = "void,float,SubValue";
+ }
+
+ public Object after26(@Arg float arg1)
+ {
+ after26 = "Object,float";
+ return null;
+ }
+
+ public void after26(@Arg SubValue arg2)
+ {
+ after26 = "void,SubValue";
+ }
+
+ public void after26(@Arg SuperValue arg2)
+ {
+ after26 = "void,SuperValue";
+ }
+
+ public void after26()
+ {
+ after26 = "void";
+ }
+
+ public void after26(@Arg int arg1)
+ {
+ after26 = "void,int";
+ }
+
+ /* AFTER27 ADVICE */
+
+ public Object after27(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after27 = "Object,MethodInfo,float,SubValue";
+ return null;
+ }
+
+ public Object after27(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after27 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after27(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after27 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after27(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after27 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after27(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after27 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after27(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after27 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after27(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after27 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after27(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after27 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after27(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after27 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after27(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after27 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after27(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after27 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after27(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after27 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after27(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after27 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after27(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after27 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after27(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after27 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after27(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after27 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after27(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after27 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after27(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after27 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after27(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after27 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after27(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after27 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after27(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after27 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after27(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after27 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after27(@Return SuperClass valueReturned)
+ {
+ after27 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after27(@Return Object valueReturned)
+ {
+ after27 = "Object,Object";
+ return null;
+ }
+
+ public void after27(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after27 = "void,float,SubValue";
+ }
+
+ public Object after27(@Arg float arg1)
+ {
+ after27 = "Object,float";
+ return null;
+ }
+
+ public void after27(@Arg SubValue arg2)
+ {
+ after27 = "void,SubValue";
+ }
+
+ public void after27(@Arg SuperValue arg2)
+ {
+ after27 = "void,SuperValue";
+ }
+
+ public void after27()
+ {
+ after27 = "void";
+ }
+
+ public void after27(@Arg int arg1)
+ {
+ after27 = "void,int";
+ }
+
+ /* AFTER28 ADVICE */
+
+ public Object after28(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after28 = "Object,MethodInfo,float,SuperValue";
+ return null;
+ }
+
+ public Object after28(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after28 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after28(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after28 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after28(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after28 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after28(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after28 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after28(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after28 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after28(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after28 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after28(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after28 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after28(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after28 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after28(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after28 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after28(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after28 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after28(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after28 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after28(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after28 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after28(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after28 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after28(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after28 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after28(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after28 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after28(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after28 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after28(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after28 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after28(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after28 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after28(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after28 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after28(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after28 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after28(@Return SuperClass valueReturned)
+ {
+ after28 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after28(@Return Object valueReturned)
+ {
+ after28 = "Object,SuperClass";
+ return null;
+ }
+
+ public void after28(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after28 = "void,float,SubValue";
+ }
+
+ public Object after28(@Arg float arg1)
+ {
+ after28 = "Object,float";
+ return null;
+ }
+
+ public void after28(@Arg SubValue arg2)
+ {
+ after28 = "void,SubValue";
+ }
+
+ public void after28(@Arg SuperValue arg2)
+ {
+ after28 = "void,SuperValue";
+ }
+
+ public void after28()
+ {
+ after28 = "void";
+ }
+
+ public void after28(@Arg int arg1)
+ {
+ after28 = "void,int";
+ }
+
+ /* AFTER29 ADVICE */
+
+ public Object after29(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after29 = "Object,MethodInfo,float,Object";
+ return null;
+ }
+
+ public Object after29(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after29 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after29(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after29 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after29(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after29 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after29(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after29 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after29(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after29 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after29(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after29 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after29(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after29 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after29(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after29 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after29(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after29 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after29(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after29 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after29(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after29 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after29(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after29 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after29(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after29 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after29(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after29 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after29(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after29 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after29(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after29 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after29(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after29 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after29(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after29 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after29(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after29 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after29(@Return SuperClass valueReturned)
+ {
+ after29 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after29(@Return Object valueReturned)
+ {
+ after29 = "Object,Object";
+ return null;
+ }
+
+ public void after29(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after29 = "void,float,SubValue";
+ }
+
+ public Object after29(@Arg float arg1)
+ {
+ after29 = "Object,float";
+ return null;
+ }
+
+ public void after29(@Arg SubValue arg2)
+ {
+ after29 = "void,SubValue";
+ }
+
+ public void after29(@Arg SuperValue arg2)
+ {
+ after29 = "void,SuperValue";
+ }
+
+ public void after29()
+ {
+ after29 = "void";
+ }
+
+ public void after29(@Arg int arg1)
+ {
+ after29 = "void,int";
+ }
+
+ /* AFTER30 ADVICE */
+
+ public Object after30(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after30 = "Object,JoinPointInfo,float,SubValue";
+ return null;
+ }
+
+ public SuperClass after30(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after30 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after30(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after30 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after30(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after30 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after30(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after30 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after30(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after30 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after30(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after30 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after30(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after30 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after30(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after30 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after30(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after30 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after30(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after30 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after30(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after30 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after30(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after30 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after30(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after30 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after30(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after30 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after30(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after30 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after30(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after30 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after30(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after30 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after30(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after30 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after30(@Return SuperClass valueReturned)
+ {
+ after30 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after30(@Return Object valueReturned)
+ {
+ after30 = "Object,Object";
+ return null;
+ }
+
+ public void after30(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after30 = "void,float,SubValue";
+ }
+
+ public Object after30(@Arg float arg1)
+ {
+ after30 = "Object,float";
+ return null;
+ }
+
+ public void after30(@Arg SubValue arg2)
+ {
+ after30 = "void,SubValue";
+ }
+
+ public void after30(@Arg SuperValue arg2)
+ {
+ after30 = "void,SuperValue";
+ }
+
+ public void after30()
+ {
+ after30 = "void";
+ }
+
+ public void after30(@Arg int arg1)
+ {
+ after30 = "void,int";
+ }
+
+ /* AFTER31 ADVICE */
+
+ public SuperClass after31(@JoinPoint MethodInfo joinPointInfo, @Arg SubValue arg2)
+ {
+ after31 = "SuperClass,MethodInfo,SubValue";
+ return null;
+ }
+
+ public Object after31(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after31 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after31(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after31 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after31(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after31 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after31(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after31 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after31(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after31 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after31(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after31 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after31(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after31 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after31(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after31 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after31(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after31 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after31(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after31 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after31(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after31 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after31(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after31 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after31(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after31 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after31(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after31 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after31(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after31 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after31(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after31 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after31(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after31 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after31(@Return SuperClass valueReturned)
+ {
+ after31 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after31(@Return Object valueReturned)
+ {
+ after31 = "Object,Object";
+ return null;
+ }
+
+ public void after31(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after31 = "void,float,SubValue";
+ }
+
+ public Object after31(@Arg float arg1)
+ {
+ after31 = "Object,float";
+ return null;
+ }
+
+ public void after31(@Arg SubValue arg2)
+ {
+ after31 = "void,SubValue";
+ }
+
+ public void after31(@Arg SuperValue arg2)
+ {
+ after31 = "void,SuperValue";
+ }
+
+ public void after31()
+ {
+ after31 = "void";
+ }
+
+ public void after31(@Arg int arg1)
+ {
+ after31 = "void,int";
+ }
+
+ /* AFTER32 ADVICE */
+
+ public Object after32(@JoinPoint MethodInfo joinPointInfo, @Arg float arg1)
+ {
+ after32 = "Object,MethodInfo,float";
+ return null;
+ }
+
+ public Object after32(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after32 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after32(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after32 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after32(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after32 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after32(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after32 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after32(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after32 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after32(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after32 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after32(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after32 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after32(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after32 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after32(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after32 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after32(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after32 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after32(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after32 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after32(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after32 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after32(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after32 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after32(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after32 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after32(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after32 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after32(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after32 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after32(@Return SuperClass valueReturned)
+ {
+ after32 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after32(@Return Object valueReturned)
+ {
+ after32 = "Object,Object";
+ return null;
+ }
+
+ public void after32(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after32 = "void,float,SubValue";
+ }
+
+ public Object after32(@Arg float arg1)
+ {
+ after32 = "Object,float";
+ return null;
+ }
+
+ public void after32(@Arg SubValue arg2)
+ {
+ after32 = "void,SubValue";
+ }
+
+ public void after32(@Arg SuperValue arg2)
+ {
+ after32 = "void,SuperValue";
+ }
+
+ public void after32()
+ {
+ after32 = "void";
+ }
+
+ public void after32(@Arg int arg1)
+ {
+ after32 = "void,int";
+ }
+
+ /* AFTER33 ADVICE */
+
+ public Object after33(@JoinPoint MethodInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after33 = "Object,MethodInfo,SuperValue";
+ return null;
+ }
+
+ public SuperClass after33(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after33 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after33(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after33 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after33(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after33 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after33(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after33 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after33(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after33 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after33(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after33 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after33(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after33 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after33(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after33 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after33(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after33 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after33(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after33 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after33(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after33 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after33(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after33 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after33(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after33 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after33(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after33 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after33(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after33 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after33(@Return SuperClass valueReturned)
+ {
+ after33 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after33(@Return Object valueReturned)
+ {
+ after33 = "Object,Object";
+ return null;
+ }
+
+ public void after33(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after33 = "void,float,SubValue";
+ }
+
+ public Object after33(@Arg float arg1)
+ {
+ after33 = "Object,float";
+ return null;
+ }
+
+ public void after33(@Arg SubValue arg2)
+ {
+ after33 = "void,SubValue";
+ }
+
+ public void after33(@Arg SuperValue arg2)
+ {
+ after33 = "void,SuperValue";
+ }
+
+ public void after33()
+ {
+ after33 = "void";
+ }
+
+ public void after33(@Arg int arg1)
+ {
+ after33 = "void,int";
+ }
+
+ /* AFTER34 ADVICE */
+
+ public SuperClass after34(@JoinPoint JoinPointInfo joinPointInfo, at Arg SubValue arg2)
+ {
+ after34 = "SuperClass,JoinPointInfo,SubValue";
+ return null;
+ }
+
+ public SubClass after34(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after34 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after34(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after34 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after34(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after34 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after34(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after34 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after34(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after34 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after34(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after34 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after34(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after34 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after34(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after34 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after34(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after34 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after34(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after34 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after34(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after34 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after34(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after34 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after34(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after34 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after34(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after34 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after34(@Return SuperClass valueReturned)
+ {
+ after34 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after34(@Return Object valueReturned)
+ {
+ after34 = "Object,Object";
+ return null;
+ }
+
+ public void after34(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after34 = "void,float,SubValue";
+ }
+
+ public Object after34(@Arg float arg1)
+ {
+ after34 = "Object,float";
+ return null;
+ }
+
+ public void after34(@Arg SubValue arg2)
+ {
+ after34 = "void,SubValue";
+ }
+
+ public void after34(@Arg SuperValue arg2)
+ {
+ after34 = "void,SuperValue";
+ }
+
+ public void after34()
+ {
+ after34 = "void";
+ }
+
+ public void after34(@Arg int arg1)
+ {
+ after34 = "void,int";
+ }
+
+ /* AFTER35 ADVICE */
+
+ public SubClass after35(@JoinPoint JoinPointInfo joinPointInfo, @Arg float arg1)
+ {
+ after35 = "SubClass,JoinPointInfo,float";
+ return null;
+ }
+
+ public SuperClass after35(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after35 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after35(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after35 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after35(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after35 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after35(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after35 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after35(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after35 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after35(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after35 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after35(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after35 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after35(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after35 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after35(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after35 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after35(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after35 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after35(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after35 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after35(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after35 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after35(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after35 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after35(@Return SuperClass valueReturned)
+ {
+ after35 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after35(@Return Object valueReturned)
+ {
+ after35 = "Object,Object";
+ return null;
+ }
+
+ public void after35(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after35 = "void,float,SubValue";
+ }
+
+ public Object after35(@Arg float arg1)
+ {
+ after35 = "Object,float";
+ return null;
+ }
+
+ public void after35(@Arg SubValue arg2)
+ {
+ after35 = "void,SubValue";
+ }
+
+ public void after35(@Arg SuperValue arg2)
+ {
+ after35 = "void,SuperValue";
+ }
+
+ public void after35()
+ {
+ after35 = "void";
+ }
+
+ public void after35(@Arg int arg1)
+ {
+ after35 = "void,int";
+ }
+
+ /* AFTER36 ADVICE */
+
+ public SuperClass after36(@JoinPoint JoinPointInfo joinPointInfo, @Arg SuperValue arg2)
+ {
+ after36 = "SubClass,JoinPointInfo,SuperValue";
+ return null;
+ }
+
+ public SubClass after36(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after36 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after36(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after36 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after36(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after36 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after36(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after36 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after36(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after36 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after36(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after36 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after36(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after36 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after36(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after36 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after36(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after36 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after36(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after36 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after36(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after36 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after36(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after36 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after36(@Return SuperClass valueReturned)
+ {
+ after36 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after36(@Return Object valueReturned)
+ {
+ after36 = "Object,Object";
+ return null;
+ }
+
+ public void after36(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after36 = "void,float,SubValue";
+ }
+
+ public Object after36(@Arg float arg1)
+ {
+ after36 = "Object,float";
+ return null;
+ }
+
+ public void after36(@Arg SubValue arg2)
+ {
+ after36 = "void,SubValue";
+ }
+
+ public void after36(@Arg SuperValue arg2)
+ {
+ after36 = "void,SuperValue";
+ }
+
+ public void after36()
+ {
+ after36 = "void";
+ }
+
+ public void after36(@Arg int arg1)
+ {
+ after36 = "void,int";
+ }
+
+ /* AFTER37 ADVICE */
+
+ public SubClass after37(@JoinPoint Object joinPointInfo, @Arg SubValue arg2)
+ {
+ after37 = "SubClass,Object,SubValue";
+ return null;
+ }
+
+ public Object after37(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after37 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after37(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after37 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after37(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after37 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after37(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after37 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after37(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after37 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after37(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after37 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after37(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after37 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after37(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after37 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after37(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after37 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after37(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after37 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after37(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after37 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after37(@Return SuperClass valueReturned)
+ {
+ after37 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after37(@Return Object valueReturned)
+ {
+ after37 = "Object,Object";
+ return null;
+ }
+
+ public void after37(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after37 = "void,float,SubValue";
+ }
+
+ public Object after37(@Arg float arg1)
+ {
+ after37 = "Object,float";
+ return null;
+ }
+
+ public void after37(@Arg SubValue arg2)
+ {
+ after37 = "void,SubValue";
+ }
+
+ public void after37(@Arg SuperValue arg2)
+ {
+ after37 = "void,SuperValue";
+ }
+
+ public void after37()
+ {
+ after37 = "void";
+ }
+
+ public void after37(@Arg int arg1)
+ {
+ after37 = "void,int";
+ }
+
+ /* AFTER38 ADVICE */
+
+ public Object after38(@JoinPoint Object joinPointInfo, @Arg float arg1)
+ {
+ after38 = "Object,Object,float";
+ return null;
+ }
+
+ public SubClass after38(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after38 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after38(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after38 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after38(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after38 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after38(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after38 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after38(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after38 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after38(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after38 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after38(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after38 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after38(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after38 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after38(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after38 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after38(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after38 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after38(@Return SuperClass valueReturned)
+ {
+ after38 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after38(@Return Object valueReturned)
+ {
+ after38 = "Object,Object";
+ return null;
+ }
+
+ public void after38(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after38 = "void,float,SubValue";
+ }
+
+ public Object after38(@Arg float arg1)
+ {
+ after38 = "Object,float";
+ return null;
+ }
+
+ public void after38(@Arg SubValue arg2)
+ {
+ after38 = "void,SubValue";
+ }
+
+ public void after38(@Arg SuperValue arg2)
+ {
+ after38 = "void,SuperValue";
+ }
+
+ public void after38()
+ {
+ after38 = "void";
+ }
+
+ public void after38(@Arg int arg1)
+ {
+ after38 = "void,int";
+ }
+
+ /* AFTER39 ADVICE */
+
+ public SubClass after39(@JoinPoint Object joinPointInfo, @Arg SuperValue arg2)
+ {
+ after39 = "SubClass,Object,SuperValue";
+ return null;
+ }
+
+ public Object after39(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after39 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after39(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after39 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after39(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after39 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after39(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after39 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after39(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after39 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after39(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after39 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after39(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after39 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after39(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after39 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after39(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after39 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after39(@Return SuperClass valueReturned)
+ {
+ after39 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after39(@Return Object valueReturned)
+ {
+ after39 = "Object,Object";
+ return null;
+ }
+
+ public void after39(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after39 = "void,float,SubValue";
+ }
+
+ public Object after39(@Arg float arg1)
+ {
+ after39 = "Object,float";
+ return null;
+ }
+
+ public void after39(@Arg SubValue arg2)
+ {
+ after39 = "void,SubValue";
+ }
+
+ public void after39(@Arg SuperValue arg2)
+ {
+ after39 = "void,SuperValue";
+ }
+
+ public void after39()
+ {
+ after39 = "void";
+ }
+
+ public void after39(@Arg int arg1)
+ {
+ after39 = "void,int";
+ }
+
+ /* AFTER40 ADVICE */
+
+ public Object after40(@JoinPoint MethodInfo joinPointInfo)
+ {
+ after40 = "Object,MethodInfo";
+ return null;
+ }
+
+ public Object after40(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after40 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after40(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after40 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after40(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after40 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after40(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after40 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after40(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after40 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after40(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after40 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after40(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after40 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after40(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after40 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after40(@Return SuperClass valueReturned)
+ {
+ after40 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after40(@Return Object valueReturned)
+ {
+ after40 = "Object,Object";
+ return null;
+ }
+
+ public void after40(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after40 = "void,float,SubValue";
+ }
+
+ public Object after40(@Arg float arg1)
+ {
+ after40 = "Object,float";
+ return null;
+ }
+
+ public void after40(@Arg SubValue arg2)
+ {
+ after40 = "void,SubValue";
+ }
+
+ public void after40(@Arg SuperValue arg2)
+ {
+ after40 = "void,SuperValue";
+ }
+
+ public void after40()
+ {
+ after40 = "void";
+ }
+
+ public void after40(@Arg int arg1)
+ {
+ after40 = "void,int";
+ }
+
+ /* AFTER41 ADVICE */
+
+ public Object after41(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ after41 = "Object,JoinPointInfo";
+ return null;
+ }
+
+ public Object after41(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after41 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after41(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after41 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after41(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after41 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after41(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after41 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after41(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after41 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after41(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after41 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after41(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after41 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after41(@Return SuperClass valueReturned)
+ {
+ after41 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after41(@Return Object valueReturned)
+ {
+ after41 = "Object,Object";
+ return null;
+ }
+
+ public void after41(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after41 = "void,float,SubValue";
+ }
+
+ public Object after41(@Arg float arg1)
+ {
+ after41 = "Object,float";
+ return null;
+ }
+
+ public void after41(@Arg SubValue arg2)
+ {
+ after41 = "void,SubValue";
+ }
+
+ public void after41(@Arg SuperValue arg2)
+ {
+ after41 = "void,SuperValue";
+ }
+
+ public void after41()
+ {
+ after41 = "void";
+ }
+
+ public void after41(@Arg int arg1)
+ {
+ after41 = "void,int";
+ }
+
+ /* AFTER42 ADVICE */
+
+ public Object after42(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SubValue arg2)
+ {
+ after42 = "Object,SuperClass,float,SubValue";
+ return null;
+ }
+
+ public Object after42(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after42 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after42(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after42 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after42(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after42 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after42(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after42 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after42(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after42 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after42(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after42 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after42(@Return SuperClass valueReturned)
+ {
+ after42 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after42(@Return Object valueReturned)
+ {
+ after42 = "Object,Object";
+ return null;
+ }
+
+ public void after42(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after42 = "void,float,SubValue";
+ }
+
+ public Object after42(@Arg float arg1)
+ {
+ after42 = "Object,float";
+ return null;
+ }
+
+ public void after42(@Arg SubValue arg2)
+ {
+ after42 = "void,SubValue";
+ }
+
+ public void after42(@Arg SuperValue arg2)
+ {
+ after42 = "void,SuperValue";
+ }
+
+ public void after42()
+ {
+ after42 = "void";
+ }
+
+ public void after42(@Arg int arg1)
+ {
+ after42 = "void,int";
+ }
+
+ /* AFTER43 ADVICE */
+
+ public Object after43(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg SuperValue arg2)
+ {
+ after43 = "Object,SuperClass,float,SuperValue";
+ return null;
+ }
+
+ public Object after43(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after43 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after43(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after43 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after43(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after43 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after43(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after43 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after43(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after43 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after43(@Return SuperClass valueReturned)
+ {
+ after43 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after43(@Return Object valueReturned)
+ {
+ after43 = "Object,Object";
+ return null;
+ }
+
+ public void after43(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after43 = "void,float,SubValue";
+ }
+
+ public Object after43(@Arg float arg1)
+ {
+ after43 = "Object,float";
+ return null;
+ }
+
+ public void after43(@Arg SubValue arg2)
+ {
+ after43 = "void,SubValue";
+ }
+
+ public void after43(@Arg SuperValue arg2)
+ {
+ after43 = "void,SuperValue";
+ }
+
+ public void after43()
+ {
+ after43 = "void";
+ }
+
+ public void after43(@Arg int arg1)
+ {
+ after43 = "void,int";
+ }
+
+ /* AFTER44 ADVICE */
+
+ public Object after44(@Return SuperClass valueReturned, @Arg float arg1,
+ @Arg Object arg2)
+ {
+ after44 = "Object,SuperClass,float,Object";
+ return null;
+ }
+
+ public SuperClass after44(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after44 = "SuperClass,MethodInfo,SuperClass,float";
+ return null;
+ }
+
+ public Object after44(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after44 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after44(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after44 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after44(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after44 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after44(@Return SuperClass valueReturned)
+ {
+ after44 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after44(@Return Object valueReturned)
+ {
+ after44 = "Object,Object";
+ return null;
+ }
+
+ public void after44(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after44 = "void,float,SubValue";
+ }
+
+ public Object after44(@Arg float arg1)
+ {
+ after44 = "Object,float";
+ return null;
+ }
+
+ public void after44(@Arg SubValue arg2)
+ {
+ after44 = "void,SubValue";
+ }
+
+ public void after44(@Arg SuperValue arg2)
+ {
+ after44 = "void,SuperValue";
+ }
+
+ public void after44()
+ {
+ after44 = "void";
+ }
+
+ public void after44(@Arg int arg1)
+ {
+ after44 = "void,int";
+ }
+
+ /* AFTER45 ADVICE */
+
+ public SuperClass after45(@Return SuperClass valueReturned, @Arg float arg1)
+ {
+ after45 = "SuperClass,SuperClass,float";
+ return null;
+ }
+
+ public Object after45(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after45 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after45(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after45 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after45(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after45 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after45(@Return SuperClass valueReturned)
+ {
+ after45 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after45(@Return Object valueReturned)
+ {
+ after45 = "Object,Object";
+ return null;
+ }
+
+ public void after45(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after45 = "void,float,SubValue";
+ }
+
+ public Object after45(@Arg float arg1)
+ {
+ after45 = "Object,float";
+ return null;
+ }
+
+ public void after45(@Arg SubValue arg2)
+ {
+ after45 = "void,SubValue";
+ }
+
+ public void after45(@Arg SuperValue arg2)
+ {
+ after45 = "void,SuperValue";
+ }
+
+ public void after45()
+ {
+ after45 = "void";
+ }
+
+ public void after45(@Arg int arg1)
+ {
+ after45 = "void,int";
+ }
+
+ /* AFTER46 ADVICE */
+
+ public Object after46(@Return SuperClass valueReturned, @Arg SubValue arg2)
+ {
+ after46 = "Object,SuperClass,SubValue";
+ return null;
+ }
+
+ public Object after46(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after46 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after46(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after46 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after46(@Return SuperClass valueReturned)
+ {
+ after46 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after46(@Return Object valueReturned)
+ {
+ after46 = "Object,Object";
+ return null;
+ }
+
+ public void after46(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after46 = "void,float,SubValue";
+ }
+
+ public Object after46(@Arg float arg1)
+ {
+ after46 = "Object,float";
+ return null;
+ }
+
+ public void after46(@Arg SubValue arg2)
+ {
+ after46 = "void,SubValue";
+ }
+
+ public void after46(@Arg SuperValue arg2)
+ {
+ after46 = "void,SuperValue";
+ }
+
+ public void after46()
+ {
+ after46 = "void";
+ }
+
+ public void after46(@Arg int arg1)
+ {
+ after46 = "void,int";
+ }
+
+ /* AFTER47 ADVICE */
+
+ public Object after47(@Return SuperClass valueReturned, @Arg SuperValue arg2)
+ {
+ after47 = "Object,SuperClass,SuperValue";
+ return null;
+ }
+
+ public SuperClass after47(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after47 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after47(@Return SuperClass valueReturned)
+ {
+ after47 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after47(@Return Object valueReturned)
+ {
+ after47 = "Object,Object";
+ return null;
+ }
+
+ public void after47(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after47 = "void,float,SubValue";
+ }
+
+ public Object after47(@Arg float arg1)
+ {
+ after47 = "Object,float";
+ return null;
+ }
+
+ public void after47(@Arg SubValue arg2)
+ {
+ after47 = "void,SubValue";
+ }
+
+ public void after47(@Arg SuperValue arg2)
+ {
+ after47 = "void,SuperValue";
+ }
+
+ public void after47()
+ {
+ after47 = "void";
+ }
+
+ public void after47(@Arg int arg1)
+ {
+ after47 = "void,int";
+ }
+
+ /* AFTER48 ADVICE */
+
+ public SuperClass after48(@Return SuperClass valueReturned, @Arg Object arg2)
+ {
+ after48 = "SuperClass,SuperClass,Object";
+ return null;
+ }
+
+ public Object after48(@Return SuperClass valueReturned)
+ {
+ after48 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after48(@Return Object valueReturned)
+ {
+ after48 = "Object,Object";
+ return null;
+ }
+
+ public void after48(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after48 = "void,float,SubValue";
+ }
+
+ public Object after48(@Arg float arg1)
+ {
+ after48 = "Object,float";
+ return null;
+ }
+
+ public void after48(@Arg SubValue arg2)
+ {
+ after48 = "void,SubValue";
+ }
+
+ public void after48(@Arg SuperValue arg2)
+ {
+ after48 = "void,SuperValue";
+ }
+
+ public void after48()
+ {
+ after48 = "void";
+ }
+
+ public void after48(@Arg int arg1)
+ {
+ after48 = "void,int";
+ }
+
+ /* AFTER49 ADVICE */
+
+ public Object after49(@Return SuperClass valueReturned)
+ {
+ after49 = "Object,SuperClass";
+ return null;
+ }
+
+ public Object after49(@Return Object valueReturned)
+ {
+ after49 = "Object,Object";
+ return null;
+ }
+
+ public void after49(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after49 = "void,float,SubValue";
+ }
+
+ public Object after49(@Arg float arg1)
+ {
+ after49 = "Object,float";
+ return null;
+ }
+
+ public void after49(@Arg SubValue arg2)
+ {
+ after49 = "void,SubValue";
+ }
+
+ public void after49(@Arg SuperValue arg2)
+ {
+ after49 = "void,SuperValue";
+ }
+
+ public void after49()
+ {
+ after49 = "void";
+ }
+
+ public void after49(@Arg int arg1)
+ {
+ after49 = "void,int";
+ }
+
+ /* AFTER50 ADVICE */
+
+ public Object after50(@Return Object valueReturned)
+ {
+ after50 = "Object,Object";
+ return null;
+ }
+
+ public void after50(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after50 = "void,float,SubValue";
+ }
+
+ public Object after50(@Arg float arg1)
+ {
+ after50 = "Object,float";
+ return null;
+ }
+
+ public void after50(@Arg SubValue arg2)
+ {
+ after50 = "void,SubValue";
+ }
+
+ public void after50(@Arg SuperValue arg2)
+ {
+ after50 = "void,SuperValue";
+ }
+
+ public void after50()
+ {
+ after50 = "void";
+ }
+
+ public void after50(@Arg int arg1)
+ {
+ after50 = "void,int";
+ }
+
+ /* AFTER51 ADVICE */
+
+ public void after51(@Arg float arg1, @Arg SubValue arg2)
+ {
+ after51 = "void,float,SubValue";
+ }
+
+ public Object after51(@Arg float arg1)
+ {
+ after51 = "Object,float";
+ return null;
+ }
+
+ public void after51(@Arg SubValue arg2)
+ {
+ after51 = "void,SubValue";
+ }
+
+ public void after51(@Arg SuperValue arg2)
+ {
+ after51 = "void,SuperValue";
+ }
+
+ public void after51()
+ {
+ after51 = "void";
+ }
+
+ public void after51(@Arg int arg1)
+ {
+ after51 = "void,int";
+ }
+
+ /* AFTER52 ADVICE */
+
+ public Object after52(@Arg float arg1)
+ {
+ after52 = "Object,float";
+ return null;
+ }
+
+ public void after52(@Arg SubValue arg2)
+ {
+ after52 = "void,SubValue";
+ }
+
+ public void after52(@Arg SuperValue arg2)
+ {
+ after52 = "void,SuperValue";
+ }
+
+ public void after52()
+ {
+ after52 = "void";
+ }
+
+ public void after52(@Arg int arg1)
+ {
+ after52 = "void,int";
+ }
+
+ /* AFTER53 ADVICE */
+
+ public void after53 (@Arg SubValue arg2)
+ {
+ after53 = "void,SubValue";
+ }
+
+ public void after53 (@Arg SuperValue arg2)
+ {
+ after53 = "void,SuperValue";
+ }
+
+ public void after53 ()
+ {
+ after53 = "void";
+ }
+
+ public void after53 (@Arg int arg1)
+ {
+ after53 = "void,int";
+ }
+
+ /* AFTER54 ADVICE */
+
+ public void after54 (@Arg SuperValue arg2)
+ {
+ after54 = "void,SuperValue";
+ }
+
+ public void after54 ()
+ {
+ after54 = "void";
+ }
+
+ public void after54 (@Arg int arg1)
+ {
+ after54 = "void,int";
+ }
+
+ /* AFTER55 ADVICE */
+
+ public void after55 ()
+ {
+ after55 = "void";
+ }
+
+ public void after55 (@Arg int arg1)
+ {
+ after55 = "void,int";
+ }
+}
\ No newline at end of file
Added: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAroundAspect.java
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAroundAspect.java 2006-12-05 22:05:17 UTC (rev 58854)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedAroundAspect.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,880 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import junit.framework.Assert;
+
+import org.jboss.aop.advice.annotation.Arg;
+import org.jboss.aop.joinpoint.ConstructorInvocation;
+import org.jboss.aop.joinpoint.CurrentInvocation;
+import org.jboss.aop.joinpoint.Invocation;
+import org.jboss.aop.joinpoint.MethodInvocation;
+
+/**
+ * Aspect used on overloaded around advice tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+// TODO temporary in this package
+public class OverloadedAroundAspect
+{
+ static String around1 = null;
+ static String around2 = null;
+ static String around3 = null;
+ static String around4 = null;
+ static String around5 = null;
+ static String around6 = null;
+ static String around7 = null;
+ static String around8 = null;
+ static String around9 = null;
+ static String around10 = null;
+ static String around11 = null;
+ static String around12 = null;
+
+ public static void clear()
+ {
+ around1 = null;
+ around2 = null;
+ around3 = null;
+ around4 = null;
+ around5 = null;
+ around6 = null;
+ around7 = null;
+ around8 = null;
+ around9 = null;
+ around10 = null;
+ around11 = null;
+ around12 = null;
+ }
+
+ /* AROUND1 ADVICE */
+
+ public Object around1(Invocation invocation) throws Throwable
+ {
+ around1 = "defaultSignature";
+ return invocation.invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around1 = "MethodInvocation,int,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around1 = "Invocation,int,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around1 = "Object,int,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg int arg1) throws Throwable
+ {
+ around1 = "MethodInvocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg long arg2) throws Throwable
+ {
+ around1 = "MethodInvocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg int arg1) throws Throwable
+ {
+ around1 = "Invocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg long arg2) throws Throwable
+ {
+ around1 = "Invocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1) throws Throwable
+ {
+ around1 = "Object,int";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg long arg2) throws Throwable
+ {
+ around1 = "Object,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation) throws Throwable
+ {
+ around1 = "MethodInvocation";
+ return invocation.invokeNext();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation) throws Throwable
+ {
+ around1 = "Object";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around1(@Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around1 = "int,long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around1(@Arg int arg1) throws Throwable
+ {
+ around1 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around1(@Arg long arg2) throws Throwable
+ {
+ around1 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around1() throws Throwable
+ {
+ around1 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around1(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND2 ADVICE */
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around2 = "MethodInvocation,int,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around2 = "Invocation,int,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around2 = "Object,int,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg int arg1) throws Throwable
+ {
+ around2 = "MethodInvocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg long arg2) throws Throwable
+ {
+ around2 = "MethodInvocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg int arg1) throws Throwable
+ {
+ around2 = "Invocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg long arg2) throws Throwable
+ {
+ around2 = "Invocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1) throws Throwable
+ {
+ around2 = "Object,int";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg long arg2) throws Throwable
+ {
+ around2 = "Object,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation) throws Throwable
+ {
+ around2 = "MethodInvocation";
+ return invocation.invokeNext();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation) throws Throwable
+ {
+ around2 = "Object";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around2(@Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around2 = "int,long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around2(@Arg int arg1) throws Throwable
+ {
+ around2 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around2(@Arg long arg2) throws Throwable
+ {
+ around2 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around2() throws Throwable
+ {
+ around2 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around2(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND3 ADVICE */
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around3 = "Invocation,int,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around3 = "Object,int,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg int arg1) throws Throwable
+ {
+ around3 = "MethodInvocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg long arg2) throws Throwable
+ {
+ around3 = "MethodInvocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg int arg1) throws Throwable
+ {
+ around3 = "Invocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg long arg2) throws Throwable
+ {
+ around3 = "Invocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1) throws Throwable
+ {
+ around3 = "Object,int";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg long arg2) throws Throwable
+ {
+ around3 = "Object,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation) throws Throwable
+ {
+ around3 = "MethodInvocation";
+ return invocation.invokeNext();
+ }
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation) throws Throwable
+ {
+ around3 = "Object";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around3(@Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around3 = "int,long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around3(@Arg int arg1) throws Throwable
+ {
+ around3 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around3(@Arg long arg2) throws Throwable
+ {
+ around3 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around3() throws Throwable
+ {
+ around3 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around3(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND4 ADVICE */
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around4 = "Object,int,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg int arg1) throws Throwable
+ {
+ around4 = "MethodInvocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg long arg2) throws Throwable
+ {
+ around4 = "MethodInvocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg int arg1) throws Throwable
+ {
+ around4 = "Invocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg long arg2) throws Throwable
+ {
+ around4 = "Invocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1) throws Throwable
+ {
+ around4 = "Object,int";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg long arg2) throws Throwable
+ {
+ around4 = "Object,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation) throws Throwable
+ {
+ around4 = "MethodInvocation";
+ return invocation.invokeNext();
+ }
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation) throws Throwable
+ {
+ around4 = "Object";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around4(@Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around4 = "int,long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around4(@Arg int arg1) throws Throwable
+ {
+ around4 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around4(@Arg long arg2) throws Throwable
+ {
+ around4 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around4() throws Throwable
+ {
+ around4 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND5 ADVICE */
+
+ public Object around5(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg int arg1) throws Throwable
+ {
+ around5 = "MethodInvocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object around5(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation, @Arg long arg2) throws Throwable
+ {
+ around5 = "MethodInvocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around5(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg int arg1) throws Throwable
+ {
+ around5 = "Invocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object around5(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg long arg2) throws Throwable
+ {
+ around5 = "Invocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around5(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1) throws Throwable
+ {
+ around5 = "Object,int";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around5(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg long arg2) throws Throwable
+ {
+ around5 = "Object,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around5(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation) throws Throwable
+ {
+ around5 = "MethodInvocation";
+ return invocation.invokeNext();
+ }
+
+ public Object around5(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation) throws Throwable
+ {
+ around5 = "Object";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around5(@Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around5 = "int,long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around5(@Arg int arg1) throws Throwable
+ {
+ around5 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around5(@Arg long arg2) throws Throwable
+ {
+ around5 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around5() throws Throwable
+ {
+ around5 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around5(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND6 ADVICE */
+
+ public Object around6(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg int arg1) throws Throwable
+ {
+ around6 = "Invocation,int";
+ return invocation.invokeNext();
+ }
+
+ public Object aroun6(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation, @Arg long arg2) throws Throwable
+ {
+ around6 = "Invocation,long";
+ return invocation.invokeNext();
+ }
+
+ public Object around6(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1) throws Throwable
+ {
+ around6 = "Object,int";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around6(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg long arg2) throws Throwable
+ {
+ around6 = "Object,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around6(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation) throws Throwable
+ {
+ around6 = "MethodInvocation";
+ return invocation.invokeNext();
+ }
+
+ public Object around6(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation) throws Throwable
+ {
+ around6 = "Object";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around6(@Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around6 = "int,long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around6(@Arg int arg1) throws Throwable
+ {
+ around6 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around6(@Arg long arg2) throws Throwable
+ {
+ around6 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around6() throws Throwable
+ {
+ around6 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around6(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND7 ADVICE */
+
+ public Object around7(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg int arg1) throws Throwable
+ {
+ around7 = "Object,int";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around7(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation, @Arg long arg2) throws Throwable
+ {
+ around7 = "Object,long";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around7(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation) throws Throwable
+ {
+ around7 = "MethodInvocation";
+ return invocation.invokeNext();
+ }
+
+ public Object around7(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation) throws Throwable
+ {
+ around7 = "Object";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around7(@Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around7 = "int,long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around7(@Arg int arg1) throws Throwable
+ {
+ around7 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around7(@Arg long arg2) throws Throwable
+ {
+ around7 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around7() throws Throwable
+ {
+ around7 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around7(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND8 ADVICE */
+
+ public Object around8(@org.jboss.aop.advice.annotation.Invocation
+ MethodInvocation invocation) throws Throwable
+ {
+ around8 = "MethodInvocation";
+ return invocation.invokeNext();
+ }
+
+ public Object around8(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation) throws Throwable
+ {
+ around8 = "Object";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around8(@Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around8 = "int,long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around8(@Arg int arg1) throws Throwable
+ {
+ around8 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around8(@Arg long arg2) throws Throwable
+ {
+ around8 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around8() throws Throwable
+ {
+ around8 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around8(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND9 ADVICE */
+
+ public Object around9(@org.jboss.aop.advice.annotation.Invocation
+ Object invocation) throws Throwable
+ {
+ around9 = "Object";
+ return ((Invocation) invocation).invokeNext();
+ }
+
+ public Object around9(@Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around9 = "int,long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around9(@Arg int arg1) throws Throwable
+ {
+ around9 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around9(@Arg long arg2) throws Throwable
+ {
+ around9 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around9() throws Throwable
+ {
+ around9 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around9(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND10 ADVICE */
+
+ public Object around10(@Arg int arg1, @Arg long arg2) throws Throwable
+ {
+ around10 = "int,long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around10(@Arg int arg1) throws Throwable
+ {
+ around10 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around10(@Arg long arg2) throws Throwable
+ {
+ around10 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around10() throws Throwable
+ {
+ around10 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around10(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND11 ADVICE */
+
+ public Object around11(@Arg int arg1) throws Throwable
+ {
+ around11 = "int";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around11(@Arg long arg2) throws Throwable
+ {
+ around11 = "long";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around11() throws Throwable
+ {
+ around11 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around11(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ /* AROUND12 ADVICE */
+
+ public Object around12() throws Throwable
+ {
+ around12 = "";
+ return CurrentInvocation.proceed();
+ }
+
+ public Object around12(@org.jboss.aop.advice.annotation.Invocation
+ ConstructorInvocation invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+}
\ No newline at end of file
Added: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedBeforeAspect.java
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedBeforeAspect.java 2006-12-05 22:05:17 UTC (rev 58854)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/OverloadedBeforeAspect.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,556 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import junit.framework.Assert;
+
+import org.jboss.aop.FieldInfo;
+import org.jboss.aop.JoinPointInfo;
+import org.jboss.aop.MethodInfo;
+import org.jboss.aop.advice.annotation.Arg;
+import org.jboss.aop.advice.annotation.JoinPoint;
+
+/**
+ * Aspect used on overloaded before advice tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class OverloadedBeforeAspect
+{
+ static String before1 = null;
+ static String before2 = null;
+ static String before3 = null;
+ static String before4 = null;
+ static String before5 = null;
+ static String before6 = null;
+ static String before7 = null;
+ static String before8 = null;
+ static String before9 = null;
+ static String before10 = null;
+ static String before11 = null;
+ static String before12 = null;
+
+ public static void clear()
+ {
+ before1 = null;
+ before2 = null;
+ before3 = null;
+ before4 = null;
+ before5 = null;
+ before6 = null;
+ before7 = null;
+ before8 = null;
+ before9 = null;
+ before10 = null;
+ before11 = null;
+ before12 = null;
+ }
+
+ /* BEFORE1 ADVICE */
+
+ public void before1(@JoinPoint FieldInfo joinPointInfo, @Arg String text)
+ {
+ before1 = "FieldInfo,String";
+ }
+
+ public void before1(@JoinPoint FieldInfo joinPointInfo, @Arg Object text)
+ {
+ before1 = "FieldInfo,Object";
+ }
+
+ public void before1(@JoinPoint JoinPointInfo joinPointInfo, @Arg String text)
+ {
+ before1 = "JoinPointInfo,String";
+ }
+
+ public void before1(@JoinPoint JoinPointInfo joinPointInfo, @Arg Object text)
+ {
+ before1 = "JoinPointInfo,Object";
+ }
+
+ public void before1(@JoinPoint Object joinPointInfo, @Arg String text)
+ {
+ before1 = "Object,String";
+ }
+
+ public void before1(@JoinPoint Object joinPointInfo, @Arg Object text)
+ {
+ before1 = "Object,Object";
+ }
+
+ public void before1(@JoinPoint FieldInfo joinPointInfo)
+ {
+ before1 = "FieldInfo";
+ }
+
+ public void before1(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ before1 = "JoinPointInfo";
+ }
+
+ public void before1(@JoinPoint Object joinPointInfo)
+ {
+ before1 = "Object";
+ }
+
+ public void before1(@Arg String text)
+ {
+ before1 = "String";
+ }
+
+ public void before1()
+ {
+ before1 = "";
+ }
+
+/* public void before1(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before1(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+ */
+ /* BEFORE2 ADVICE */
+
+ public void before2(@JoinPoint FieldInfo joinPointInfo, @Arg Object text)
+ {
+ before2 = "FieldInfo,Object";
+ }
+
+ public void before2(@JoinPoint JoinPointInfo joinPointInfo, @Arg String text)
+ {
+ before2 = "JoinPointInfo,String";
+ }
+
+ public void before2(@JoinPoint JoinPointInfo joinPointInfo, @Arg Object text)
+ {
+ before2 = "JoinPointInfo,Object";
+ }
+
+ public void before2(@JoinPoint Object joinPointInfo, @Arg String text)
+ {
+ before2 = "Object,String";
+ }
+
+ public void before2(@JoinPoint Object joinPointInfo, @Arg Object text)
+ {
+ before2 = "Object,Object";
+ }
+
+ public void before2(@JoinPoint FieldInfo joinPointInfo)
+ {
+ before2 = "FieldInfo";
+ }
+
+ public void before2(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ before2 = "JoinPointInfo";
+ }
+
+ public void before2(@JoinPoint Object joinPointInfo)
+ {
+ before2 = "Object";
+ }
+
+ public void before2(@Arg String text)
+ {
+ before2 = "String";
+ }
+
+ public void before2()
+ {
+ before2 = "";
+ }
+
+ public void before2(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before2(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ /* BEFORE3 ADVICE */
+
+ public void before3(@JoinPoint JoinPointInfo joinPointInfo, @Arg String text)
+ {
+ before3 = "JoinPointInfo,String";
+ }
+
+ public void before3(@JoinPoint JoinPointInfo joinPointInfo, @Arg Object text)
+ {
+ before3 = "JoinPointInfo,Object";
+ }
+
+ public void before3(@JoinPoint Object joinPointInfo, @Arg String text)
+ {
+ before3 = "Object,String";
+ }
+
+ public void before3(@JoinPoint Object joinPointInfo, @Arg Object text)
+ {
+ before3 = "Object,Object";
+ }
+
+ public void before3(@JoinPoint FieldInfo joinPointInfo)
+ {
+ before3 = "FieldInfo";
+ }
+
+ public void before3(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ before3 = "JoinPointInfo";
+ }
+
+ public void before3(@JoinPoint Object joinPointInfo)
+ {
+ before3 = "Object";
+ }
+
+ public void before3(@Arg String text)
+ {
+ before3 = "String";
+ }
+
+ public void before3()
+ {
+ before3 = "";
+ }
+
+ public void before3(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before3(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ /* BEFORE4 ADVICE */
+
+ public void before4(@JoinPoint JoinPointInfo joinPointInfo, @Arg Object text)
+ {
+ before4 = "JoinPointInfo,Object";
+ }
+
+ public void before4(@JoinPoint Object joinPointInfo, @Arg String text)
+ {
+ before4 = "Object,String";
+ }
+
+ public void before4(@JoinPoint Object joinPointInfo, @Arg Object text)
+ {
+ before4 = "Object,Object";
+ }
+
+ public void before4(@JoinPoint FieldInfo joinPointInfo)
+ {
+ before4 = "FieldInfo";
+ }
+
+ public void before4(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ before4 = "JoinPointInfo";
+ }
+
+ public void before4(@JoinPoint Object joinPointInfo)
+ {
+ before4 = "Object";
+ }
+
+ public void before4(@Arg String text)
+ {
+ before4 = "String";
+ }
+
+ public void before4()
+ {
+ before4 = "";
+ }
+
+ public void before4(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before4(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ /* BEFORE5 ADVICE */
+
+ public void before5(@JoinPoint Object joinPointInfo, @Arg String text)
+ {
+ before5 = "Object,String";
+ }
+
+ public void before5(@JoinPoint Object joinPointInfo, @Arg Object text)
+ {
+ before5 = "Object,Object";
+ }
+
+ public void before5(@JoinPoint FieldInfo joinPointInfo)
+ {
+ before5 = "FieldInfo";
+ }
+
+ public void before5(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ before5 = "JoinPointInfo";
+ }
+
+ public void before5(@JoinPoint Object joinPointInfo)
+ {
+ before5 = "Object";
+ }
+
+ public void before5(@Arg String text)
+ {
+ before5 = "String";
+ }
+
+ public void before5()
+ {
+ before5 = "";
+ }
+
+ public void before5(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before5(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ /* BEFORE6 ADVICE */
+
+ public void before6(@JoinPoint Object joinPointInfo, @Arg Object text)
+ {
+ before6 = "Object,Object";
+ }
+
+ public void before6(@JoinPoint FieldInfo joinPointInfo)
+ {
+ before6 = "FieldInfo";
+ }
+
+ public void before6(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ before6 = "JoinPointInfo";
+ }
+
+ public void before6(@JoinPoint Object joinPointInfo)
+ {
+ before6 = "Object";
+ }
+
+ public void before6(@Arg String text)
+ {
+ before6 = "String";
+ }
+
+ public void before6()
+ {
+ before6 = "";
+ }
+
+ public void before6(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before6(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ /* BEFORE7 ADVICE */
+
+ public void before7(@JoinPoint FieldInfo joinPointInfo)
+ {
+ before7 = "FieldInfo";
+ }
+
+ public void before7(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ before7 = "JoinPointInfo";
+ }
+
+ public void before7(@JoinPoint Object joinPointInfo)
+ {
+ before7 = "Object";
+ }
+
+ public void before7(@Arg String text)
+ {
+ before7 = "String";
+ }
+
+ public void before7()
+ {
+ before7 = "";
+ }
+
+ public void before7(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before7(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ /* BEFORE8 ADVICE */
+
+ public void before8(@JoinPoint JoinPointInfo joinPointInfo)
+ {
+ before8 = "JoinPointInfo";
+ }
+
+ public void before8(@JoinPoint Object joinPointInfo)
+ {
+ before8 = "Object";
+ }
+
+ public void before8(@Arg String text)
+ {
+ before8 = "String";
+ }
+
+ public void before8()
+ {
+ before8 = "";
+ }
+
+ public void before8(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before8(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ /* BEFORE9 ADVICE */
+
+ public void before9(@JoinPoint Object joinPointInfo)
+ {
+ before9 = "Object";
+ }
+
+ public void before9(@Arg String text)
+ {
+ before9 = "String";
+ }
+
+ public void before9()
+ {
+ before9 = "";
+ }
+
+ public void before9(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before9(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ /* BEFORE10 ADVICE */
+
+ public void before10(@Arg String text)
+ {
+ before10 = "String";
+ }
+
+ public void before10(@Arg Object text)
+ {
+ before10 = "Object";
+ }
+
+ public void before10()
+ {
+ before10 = "";
+ }
+
+ public void before10(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before10(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ /* BEFORE11 ADVICE */
+
+ public void before11(@Arg Object text)
+ {
+ before11 = "Object";
+ }
+
+ public void before11()
+ {
+ before11 = "";
+ }
+
+ public void before11(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before11(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ /* BEFORE12 ADVICE */
+
+ public void before12()
+ {
+ before12 = "";
+ }
+
+ public void before12(@JoinPoint MethodInfo constructorInfo)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void before12(@Arg SuperValue text)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/POJOException.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/POJOException.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/POJOException.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/POJOException.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,55 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+/**
+ * Class used on annotated parameter tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class POJOException extends Exception
+{
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * A number that identifies the exception thrown.
+ */
+ int number;
+
+ /**
+ * Constructor.
+ */
+ public POJOException()
+ {
+ this(0);
+ }
+
+ /**
+ * Constructor.
+ *
+ * @param number a number identifying the exception.
+ */
+ public POJOException(int number)
+ {
+ this.number = number;
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ReturnAspect.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ReturnAspect.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ReturnAspect.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ReturnAspect.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,206 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import junit.framework.Assert;
+
+import org.jboss.aop.JoinPointInfo;
+import org.jboss.aop.advice.annotation.JoinPoint;
+import org.jboss.aop.advice.annotation.Return;
+import org.jboss.aop.joinpoint.Invocation;
+
+/**
+ * Aspect used both on @Return parameter tests, and on advice return type tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class ReturnAspect
+{
+ public static String aroundAdvice = null;
+ public static Object aroundReturn = null;
+ public static String afterAdvice = null;
+ public static Object afterReturn = null;
+
+ public static void clear()
+ {
+ aroundAdvice = null;
+ aroundReturn = null;
+ afterAdvice = null;
+ afterReturn = null;
+ }
+
+ public void before(@Return Object object)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void throwing(@Return Object object)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void around1(Invocation invocation) throws Exception
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void around2(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation) throws Exception
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public Object around3(Invocation invocation) throws Throwable
+ {
+ aroundAdvice = "around3";
+ aroundReturn = invocation.invokeNext();
+ return aroundAdvice;
+ }
+
+ public Object around4(@org.jboss.aop.advice.annotation.Invocation
+ Invocation invocation) throws Throwable
+ {
+ aroundAdvice = "around4";
+ aroundReturn = invocation.invokeNext();
+ return aroundAdvice;
+ }
+
+ public Object around5()
+ {
+ aroundAdvice = "around5";
+ return aroundAdvice;
+ }
+
+ public void around6()
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public String around7(@org.jboss.aop.advice.annotation.Invocation Invocation
+ invocation) throws Throwable
+ {
+ aroundAdvice = "around7";
+ aroundReturn = invocation.invokeNext();
+ return aroundAdvice;
+ }
+
+ public SubValue around8()
+ {
+ aroundAdvice = "around8";
+ return new SubValue(80);
+ }
+
+ public SuperValue around9(@org.jboss.aop.advice.annotation.Invocation Invocation
+ invocation) throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ public SubValue around10(@org.jboss.aop.advice.annotation.Invocation Invocation
+ invocation) throws Throwable
+ {
+ aroundAdvice = "around10";
+ aroundReturn = invocation.invokeNext();
+ return new SubValue(100);
+ }
+
+ public SuperValue around11(@org.jboss.aop.advice.annotation.Invocation Invocation
+ invocation) throws Throwable
+ {
+ aroundAdvice = "around11";
+ aroundReturn = invocation.invokeNext();
+ return new SuperValue(110);
+ }
+
+
+ public void after1(@org.jboss.aop.advice.annotation.JoinPoint JoinPointInfo info) throws Exception
+ {
+ afterAdvice = "after1";
+ }
+
+ public void after2(@Return Object returnedValue) throws Exception
+ {
+ afterAdvice = "after2";
+ afterReturn = returnedValue;
+ }
+
+ public Object after3(@JoinPoint JoinPointInfo info, @Return String returnedValue)
+ throws Throwable
+ {
+ afterAdvice = "after3";
+ afterReturn = returnedValue;
+ return afterAdvice;
+ }
+
+ public Object after4(@Return Object returnedValue) throws Throwable
+ {
+ afterAdvice = "after4";
+ afterReturn = returnedValue;
+ return afterAdvice;
+ }
+
+ public Object after5()
+ {
+ afterAdvice = "after5";
+ return afterAdvice;
+ }
+
+ public void after6()
+ {
+ afterAdvice = "after6";
+ }
+
+ public String after7(@JoinPoint JoinPointInfo joinPoint,
+ @Return String returnedValue) throws Throwable
+ {
+ afterAdvice = "after7";
+ afterReturn = returnedValue;
+ return afterAdvice;
+ }
+
+ public SubValue after8()
+ {
+ afterAdvice = "after8";
+ return new SubValue(800);
+ }
+
+ public SuperValue after9() throws Throwable
+ {
+ Assert.fail("This advice should never be executed");
+ return null;
+ }
+
+ public SubValue after10(@Return SubValue returnedValue) throws Throwable
+ {
+ afterAdvice = "after10";
+ afterReturn = returnedValue;
+ return new SubValue(1000);
+ }
+
+ public SubValue after11(@Return SuperValue returnedValue) throws Throwable
+ {
+ afterAdvice = "after11";
+ afterReturn = returnedValue;
+ return new SubValue(1100);
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ReturnPOJO.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ReturnPOJO.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ReturnPOJO.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ReturnPOJO.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,88 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+/**
+ * Plain old java object used both on @Return parameter tests, and on advice return type
+ * tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class ReturnPOJO
+{
+ public void method1() {}
+
+ public String method2()
+ {
+ return "method2";
+ }
+
+ public String method3()
+ {
+ return "method3";
+ }
+
+ public String method4()
+ {
+ return "method4";
+ }
+
+ public String method5()
+ {
+ return "method5";
+ }
+
+ public String method6()
+ {
+ return "method6";
+ }
+
+ public String method7()
+ {
+ return "method7";
+ }
+
+ public SubValue method8()
+ {
+ return new SubValue(8);
+ }
+
+ public SubValue method9()
+ {
+ return new SubValue(9);
+ }
+
+ public SuperValue method10()
+ {
+ return new SuperValue(10);
+ }
+
+ public SuperValue method11()
+ {
+ return new SuperValue(11);
+ }
+
+ public Object method12() throws POJOException
+ {
+ throw new POJOException();
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ReturnTestCase.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ReturnTestCase.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ReturnTestCase.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ReturnTestCase.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,181 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+import junit.textui.TestRunner;
+
+import org.jboss.test.aop.AOPTestWithSetup;
+
+/**
+ * Tests both the use of @Return parameters, and the use of return values in advices.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class ReturnTestCase extends AOPTestWithSetup
+{
+ private ReturnPOJO pojo;
+
+ public static void main(String[] args)
+ {
+ TestRunner.run(suite());
+ }
+
+ public static Test suite()
+ {
+ TestSuite suite = new TestSuite("ReturnTestCase");
+ suite.addTestSuite(ReturnTestCase.class);
+ return suite;
+ }
+
+ public ReturnTestCase(String name)
+ {
+ super(name);
+ }
+
+ public void setUp() throws Exception
+ {
+ super.setUp();
+ ReturnAspect.clear();
+ this.pojo = new ReturnPOJO();
+ }
+
+ public void test1()
+ {
+ pojo.method1();
+ assertNull(ReturnAspect.aroundAdvice);
+ assertNull(ReturnAspect.aroundReturn);
+ assertEquals("after1", ReturnAspect.afterAdvice);
+ assertNull(ReturnAspect.afterReturn);
+ }
+
+ public void test2()
+ {
+ assertEquals("method2", pojo.method2());
+ assertNull(ReturnAspect.aroundAdvice);
+ assertNull(ReturnAspect.aroundReturn);
+ assertEquals("after2", ReturnAspect.afterAdvice);
+ assertEquals("method2", ReturnAspect.afterReturn);
+ }
+
+ public void test3()
+ {
+ assertEquals("after3", pojo.method3());
+ assertEquals("around3", ReturnAspect.aroundAdvice);
+ assertEquals("method3", ReturnAspect.aroundReturn);
+ assertEquals("after3", ReturnAspect.afterAdvice);
+ assertEquals("around3", ReturnAspect.afterReturn);
+ }
+
+ public void test4()
+ {
+ assertEquals("after4", pojo.method4());
+ assertEquals("around4", ReturnAspect.aroundAdvice);
+ assertEquals("method4", ReturnAspect.aroundReturn);
+ assertEquals("after4", ReturnAspect.afterAdvice);
+ assertEquals("around4", ReturnAspect.afterReturn);
+ }
+
+ public void test5()
+ {
+ assertEquals("after5", pojo.method5());
+ assertEquals("around5", ReturnAspect.aroundAdvice);
+ assertNull(ReturnAspect.aroundReturn);
+ assertEquals("after5", ReturnAspect.afterAdvice);
+ assertNull(ReturnAspect.afterReturn);
+ }
+
+ public void test6()
+ {
+ assertEquals("method6", pojo.method6());
+ assertNull(ReturnAspect.aroundAdvice);
+ assertNull(ReturnAspect.aroundReturn);
+ assertEquals("after6", ReturnAspect.afterAdvice);
+ assertNull(ReturnAspect.afterReturn);
+ }
+
+ public void test7()
+ {
+ assertEquals("after7", pojo.method7());
+ assertEquals("around7", ReturnAspect.aroundAdvice);
+ assertEquals("method7", ReturnAspect.aroundReturn);
+ assertEquals("after7", ReturnAspect.afterAdvice);
+ assertEquals("around7", ReturnAspect.afterReturn);
+ }
+
+ public void test8()
+ {
+ SubValue value = pojo.method8();
+ assertNotNull(value);
+ assertEquals(800, value.i);
+ assertEquals("around8", ReturnAspect.aroundAdvice);
+ assertNull(ReturnAspect.aroundReturn);
+ assertEquals("after8", ReturnAspect.afterAdvice);
+ assertNull(ReturnAspect.afterReturn);
+ }
+
+ public void test9()
+ {
+ SubValue value = pojo.method9();
+ assertNotNull(value);
+ assertEquals(9, value.i);
+ assertNull(ReturnAspect.aroundAdvice);
+ assertNull(ReturnAspect.aroundReturn);
+ assertNull(ReturnAspect.afterAdvice);
+ assertNull(ReturnAspect.afterReturn);
+ }
+
+ public void test10()
+ {
+ SuperValue value = pojo.method10();
+ assertNotNull(value);
+ assertEquals(100, value.i);
+ assertEquals("around10", ReturnAspect.aroundAdvice);
+ assertNotNull(ReturnAspect.aroundReturn);
+ assertEquals(10, ((SuperValue) ReturnAspect.aroundReturn).i);
+ assertNull(ReturnAspect.afterAdvice);
+ assertNull(ReturnAspect.afterReturn);
+ }
+
+ public void test11()
+ {
+ SuperValue value = pojo.method11();
+ assertNotNull(value);
+ assertEquals(1100, value.i);
+ assertEquals("around11", ReturnAspect.aroundAdvice);
+ assertNotNull(ReturnAspect.aroundReturn);
+ assertEquals(11, ((SuperValue) ReturnAspect.aroundReturn).i);
+ assertEquals("after11", ReturnAspect.afterAdvice);
+ assertNotNull(ReturnAspect.afterReturn);
+ assertEquals(110, ((SuperValue) ReturnAspect.afterReturn).i);
+ }
+
+ public void test12()
+ {
+ try
+ {
+ pojo.method12();
+ }
+ catch(POJOException e){}
+ }
+}
\ No newline at end of file
Added: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SubClass.java
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SubClass.java 2006-12-05 22:05:17 UTC (rev 58854)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SubClass.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,27 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+public class SubClass extends SuperClass
+{
+
+}
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SubValue.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/SubValue.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/SubValue.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SubValue.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,38 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+package org.jboss.test.aop.beforeafterArgs;
+
+/**
+ *
+ * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
+ * @version $Revision: 39449 $
+ */
+public class SubValue extends SuperValue
+{
+
+ public SubValue(int i)
+ {
+ // FIXME SubValue constructor
+ super(i);
+ }
+
+}
Added: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SuperClass.java
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SuperClass.java 2006-12-05 22:05:17 UTC (rev 58854)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SuperClass.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,27 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+public class SuperClass
+{
+
+}
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SuperValue.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/SuperValue.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/SuperValue.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/SuperValue.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,47 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+package org.jboss.test.aop.beforeafterArgs;
+
+/**
+ *
+ * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
+ * @version $Revision: 39449 $
+ */
+public class SuperValue
+{
+ int i;
+ public SuperValue(int i)
+ {
+ this.i = i;
+ }
+
+ public int getValue()
+ {
+ return i;
+ }
+
+ public void doubleValue()
+ {
+ i *= 2;
+ }
+
+}
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ThrownAspect.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ThrownAspect.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ThrownAspect.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ThrownAspect.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,88 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import junit.framework.Assert;
+
+import org.jboss.aop.advice.annotation.Arg;
+import org.jboss.aop.advice.annotation.Thrown;
+
+/**
+ * Aspect used on @Thrown parameter tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class ThrownAspect
+{
+
+ public static String advice;
+ public static Throwable thrown;
+ public static int thrownNumber;
+
+ public static void clear()
+ {
+ advice = null;
+ thrown = null;
+ thrownNumber = 0;
+ }
+
+ public void throwing1()
+ {
+ advice = "throwing1";
+ }
+
+ public void throwing2(@Thrown Throwable throwable, @Arg int i)
+ {
+ advice = "throwing2";
+ thrownNumber = i;
+ thrown = throwable;
+ }
+
+ public void throwing3(@Thrown Exception exception)
+ {
+ advice = "throwing3";
+ thrownNumber = ((POJOException) exception).number;
+ thrown = exception;
+ }
+
+ public void throwing4(@Thrown POJOException pojoException, @Arg int i)
+ {
+ advice = "throwing4";
+ thrownNumber = i;
+ thrown = pojoException;
+ }
+
+ public void throwing5(@Thrown RuntimeException runtimeException)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void throwing6(Throwable throwable)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+
+ public void throwing7(@Arg int i)
+ {
+ Assert.fail("This advice should never be executed");
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ThrownPOJO.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ThrownPOJO.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ThrownPOJO.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ThrownPOJO.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,60 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+/**
+ * Plain old java object used on @Thrown parameter tests.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ */
+public class ThrownPOJO
+{
+ public void method1(int i) throws POJOException
+ {
+ throw new POJOException(i);
+ }
+
+ public void method2(int i) throws POJOException
+ {
+ throw new POJOException(i);
+ }
+
+ public void method3(int i) throws POJOException
+ {
+ throw new POJOException(i);
+ }
+
+ public void method4(int i) throws POJOException
+ {
+ throw new POJOException(i);
+ }
+
+ public void method5(int i) throws POJOException
+ {
+ throw new POJOException(i);
+ }
+
+ public void method6() throws POJOException
+ {
+ throw new POJOException(6);
+ }
+}
\ No newline at end of file
Copied: projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ThrownTestCase.java (from rev 58706, projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ThrownTestCase.java)
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/args/ThrownTestCase.java 2006-11-28 17:24:44 UTC (rev 58706)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/beforeafter/arg/ThrownTestCase.java 2006-12-05 23:03:14 UTC (rev 58855)
@@ -0,0 +1,177 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.aop.beforeafterArgs;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+import junit.textui.TestRunner;
+
+import org.jboss.test.aop.AOPTestWithSetup;
+
+/**
+ * Tests parameter annotation @Thrown.
+ *
+ * @author <a href="flavia.rainone at jboss.com">Flavia Rainone</a>
+ *
+ */
+public class ThrownTestCase extends AOPTestWithSetup
+{
+ private ThrownPOJO pojo;
+
+ public static void main(String[] args)
+ {
+ TestRunner.run(suite());
+ }
+
+ public static Test suite()
+ {
+ TestSuite suite = new TestSuite("ThrownTestCase");
+ suite.addTestSuite(ThrownTestCase.class);
+ return suite;
+ }
+
+ public ThrownTestCase(String name)
+ {
+ super(name);
+ }
+
+ public void setUp() throws Exception
+ {
+ super.setUp();
+ ThrownAspect.clear();
+ this.pojo = new ThrownPOJO();
+ }
+
+ public void test1()
+ {
+ boolean thrown = false;
+ try
+ {
+ pojo.method1(11);
+ }
+ catch(POJOException pojoException)
+ {
+ thrown = true;
+ assertEquals(11, pojoException.number);
+ assertNull(ThrownAspect.advice);
+ assertNull(ThrownAspect.thrown);
+ assertEquals(0, ThrownAspect.thrownNumber);
+ }
+ assertTrue(thrown);
+ }
+
+ public void test2()
+ {
+ boolean thrown = false;
+ try
+ {
+ pojo.method2(23);
+ }
+ catch(POJOException pojoException)
+ {
+ thrown = true;
+ assertEquals(23, pojoException.number);
+ assertEquals("throwing2", ThrownAspect.advice);
+ assertEquals(pojoException, ThrownAspect.thrown);
+ assertEquals(23, ThrownAspect.thrownNumber);
+ }
+ assertTrue(thrown);
+ }
+
+ public void test3()
+ {
+ boolean thrown = false;
+ try
+ {
+ pojo.method3(37);
+ }
+ catch(POJOException pojoException)
+ {
+ thrown = true;
+ assertEquals(37, pojoException.number);
+ assertNull(ThrownAspect.advice);
+ assertNull(ThrownAspect.thrown);
+ assertEquals(0, ThrownAspect.thrownNumber);
+ /*assertEquals("throwing3", ThrownAspect.advice);
+ assertEquals(pojoException, ThrownAspect.thrown);
+ assertEquals(37, ThrownAspect.thrownNumber);*/
+ }
+ assertTrue(thrown);
+ }
+
+ public void test4()
+ {
+ boolean thrown = false;
+ try
+ {
+ pojo.method4(43);
+ }
+ catch(POJOException pojoException)
+ {
+ thrown = true;
+ assertEquals(43, pojoException.number);
+ assertNull(ThrownAspect.advice);
+ assertNull(ThrownAspect.thrown);
+ assertEquals(0, ThrownAspect.thrownNumber);
+ /*assertEquals("throwing4", ThrownAspect.advice);
+ assertEquals(pojoException, ThrownAspect.thrown);
+ assertEquals(43, ThrownAspect.thrownNumber);*/
+ }
+ assertTrue(thrown);
+ }
+
+ public void test5()
+ {
+ boolean thrown = false;
+ try
+ {
+ pojo.method5(59);
+ }
+ catch(POJOException pojoException)
+ {
+ thrown = true;
+ assertEquals(59, pojoException.number);
+ assertNull(ThrownAspect.advice);
+ assertNull(ThrownAspect.thrown);
+ assertEquals(0, ThrownAspect.thrownNumber);
+ }
+ assertTrue(thrown);
+ }
+
+ public void test6()
+ {
+ boolean thrown = false;
+ try
+ {
+ pojo.method6();
+ }
+ catch(POJOException pojoException)
+ {
+ thrown = true;
+ assertEquals(6, pojoException.number);
+ assertNull(ThrownAspect.advice);
+ assertNull(ThrownAspect.thrown);
+ assertEquals(0, ThrownAspect.thrownNumber);
+ }
+ assertTrue(thrown);
+ }
+}
\ No newline at end of file
More information about the jboss-cvs-commits
mailing list