forked from CSE2102Fall2015/2015JAT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change of derivatives in graph observed
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<aspectj> | ||
<aspects> | ||
<concrete-aspect name="com.maintainj.inst.J2SEAspect" extends="com.maintainj.aspect.J2SEExecutionAspect"> | ||
<pointcut name="anyExecution" expression="execution( * *.*(..)) || execution( *.new(..))"/> | ||
<pointcut name="beforeMain" expression="execution(public static void jat.examples.ThreeBodyExample.ThreeBodyExample.main(String[])) || execution(public static void jat.examples.ThreeBodyExample.ThreeBodyExample.main(String...))"/> | ||
</concrete-aspect> | ||
</aspects> | ||
<weaver options="-proceedOnError -nowarn -XaddSerialVersionUID -Xset:makeTjpFieldsTransient=true -Xset:avoidFinal=true"> | ||
<include within="jat..*"/> | ||
<include within="jat.examples.ThreeBodyExample.ThreeBodyExample"/> | ||
<exclude within="*ObjectFactory"/> | ||
<exclude within="*..*CGLIB*"/> | ||
<exclude within="com.maintainj..*"/> | ||
</weaver> | ||
</aspectj> |