Browse Source

243516: fixed example

tags/V162DEV_M1
aclement 16 years ago
parent
commit
8de760d697
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      docs/progGuideDB/language.xml

+ 1
- 1
docs/progGuideDB/language.xml View File

</para> </para>


<programlisting><![CDATA[ <programlisting><![CDATA[
class TraceNonStaticMethods {
aspect TraceNonStaticMethods {
before(Point p): target(p) && call(* *(..)) { before(Point p): target(p) && call(* *(..)) {
System.out.println("Entering " + thisJoinPoint + " in " + p); System.out.println("Entering " + thisJoinPoint + " in " + p);
} }

Loading…
Cancel
Save