aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/xmldefs/aop6.xml
blob: 870767464e8abdb57ce3be5c13e430dbba15e1ff (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="advice2(java.lang.String w)"/>
      <after pointcut="execution(* Hello2.say2(..)) AND args(w) " invokeClass="JavaHelper" invokeMethod="advice3(java.lang.String w)"/>
    </concrete-aspect>
  </aspects>

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