diff options
author | ehilsdal <ehilsdal> | 2004-08-23 01:53:41 +0000 |
---|---|---|
committer | ehilsdal <ehilsdal> | 2004-08-23 01:53:41 +0000 |
commit | acaeeaf485dd45db241b10c594d1a7a99bd7afa1 (patch) | |
tree | 4d3d6f604351fbddaed92ec62330d48579936848 /docs/progGuideDB/gettingstarted.xml | |
parent | a7d57dab76b3a8dda616ea0e1e0f0afc1504bf60 (diff) | |
download | aspectj-acaeeaf485dd45db241b10c594d1a7a99bd7afa1.tar.gz aspectj-acaeeaf485dd45db241b10c594d1a7a99bd7afa1.zip |
fix for bugzilla bug 72379:
static aspects not well explained
Diffstat (limited to 'docs/progGuideDB/gettingstarted.xml')
-rw-r--r-- | docs/progGuideDB/gettingstarted.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/progGuideDB/gettingstarted.xml b/docs/progGuideDB/gettingstarted.xml index 0701d01bd..c9ac6ad36 100644 --- a/docs/progGuideDB/gettingstarted.xml +++ b/docs/progGuideDB/gettingstarted.xml @@ -888,7 +888,7 @@ aspect PointBoundsChecking { </para> <programlisting><![CDATA[ -static aspect RegistrationProtection { +aspect RegistrationProtection { pointcut register(): call(void Registry.register(FigureElement)); @@ -920,7 +920,7 @@ static aspect RegistrationProtection { </para> <programlisting><![CDATA[ -static aspect RegistrationProtection { +aspect RegistrationProtection { pointcut register(): call(void Registry.register(FigureElement)); pointcut canRegister(): withincode(static * FigureElement.make*(..)); |