diff options
author | aclement <aclement> | 2008-08-14 17:32:41 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-08-14 17:32:41 +0000 |
commit | 8de760d6979b047eb9d3d490302bc0f5967d3aab (patch) | |
tree | ee95708b812fb11731f639b8496cf59eb17ff2fd /docs/progGuideDB | |
parent | 9e759ec041041529c028606a3df438102acc37e8 (diff) | |
download | aspectj-8de760d6979b047eb9d3d490302bc0f5967d3aab.tar.gz aspectj-8de760d6979b047eb9d3d490302bc0f5967d3aab.zip |
243516: fixed example
Diffstat (limited to 'docs/progGuideDB')
-rw-r--r-- | docs/progGuideDB/language.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/progGuideDB/language.xml b/docs/progGuideDB/language.xml index ea3c4702a..3bbaba3f8 100644 --- a/docs/progGuideDB/language.xml +++ b/docs/progGuideDB/language.xml @@ -1246,7 +1246,7 @@ void around(Point p, int x): target(p) </para> <programlisting><![CDATA[ - class TraceNonStaticMethods { + aspect TraceNonStaticMethods { before(Point p): target(p) && call(* *(..)) { System.out.println("Entering " + thisJoinPoint + " in " + p); } |