From: acolyer Date: Thu, 21 Oct 2004 13:09:21 +0000 (+0000) Subject: fix for Bugzilla Bug 75486 X-Git-Tag: V1_2_1~9 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6d754a3e9173848c97d390f5611b4cdfe8415727;p=aspectj.git fix for Bugzilla Bug 75486 issingleton or issingleton()? --- diff --git a/docs/progGuideDB/quickreference.xml b/docs/progGuideDB/quickreference.xml index 6a5d83052..ef5c3cb80 100644 --- a/docs/progGuideDB/quickreference.xml +++ b/docs/progGuideDB/quickreference.xml @@ -682,7 +682,7 @@ where PerClause defines how the aspect is - instantiated and associated (issingleton by + instantiated and associated (issingleton() by default): @@ -699,7 +699,7 @@ - [ issingleton ] + [ issingleton() ] One instance of the aspect is made. This is diff --git a/docs/progGuideDB/semantics.xml b/docs/progGuideDB/semantics.xml index fb83857e4..7ea74fe80 100644 --- a/docs/progGuideDB/semantics.xml +++ b/docs/progGuideDB/semantics.xml @@ -2966,11 +2966,11 @@ ModifiersPattern = aspect Id { ... } - aspect Id issingleton { ... } + aspect Id issingleton() { ... } - By default (or by using the modifier issingleton) + By default (or by using the modifier issingleton()) an aspect has exactly one instance that cuts across the entire program. That instance is available at any time during program execution with the static method aspectOf()