aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/xmldefs/aop7.xml
blob: 7d1852d5e761747d9ea848f002d8a2dad3214ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<aspectj>
  <aspects>
    <concrete-aspect name="ConjuredUp">
      <before pointcut="execution(* Hello2.say2(..)) AND args(w) " invokeClass="JavaHelper" invokeMethod="advice4(JoinPoint tjp, java.lang.String w)"/>
      <after pointcut="execution(* Hello2.say2(..)) AND args(w) " invokeClass="JavaHelper" invokeMethod="advice5(JoinPoint tjp, java.lang.String w)"/>
    </concrete-aspect>
  </aspects>

  <weaver options="-Xreweavable -verbose -XlazyTjp -showWeaveInfo">
    <include within="Hello2"/>
    <dump within="*"/>
  </weaver>
</aspectj>