MaintainJ diagrams

master
sib12004 2015-11-04 16:42:36 -05:00
parent 7ec846a567
commit 3ba509fcf8
2 changed files with 15 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

View File

@ -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 genj.app.App.main(String[])) || execution(public static void genj.app.App.main(String...))"/>
</concrete-aspect>
</aspects>
<weaver options="-proceedOnError -nowarn -XaddSerialVersionUID -Xset:makeTjpFieldsTransient=true -Xset:avoidFinal=true">
<include within="genj.tree..*"/>
<include within="genj.app.App"/>
<exclude within="*ObjectFactory"/>
<exclude within="*..*CGLIB*"/>
<exclude within="com.maintainj..*"/>
</weaver>
</aspectj>