diff options
Diffstat (limited to 'docs/progGuideDB')
-rw-r--r-- | docs/progGuideDB/implementation.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/progGuideDB/implementation.xml b/docs/progGuideDB/implementation.xml index 6e73e7665..5f255700e 100644 --- a/docs/progGuideDB/implementation.xml +++ b/docs/progGuideDB/implementation.xml @@ -116,6 +116,12 @@ Finally, note that one cannot define static fields or methods on interfaces. </para> + <para> + When declaring methods on target types, only methods declared + public are recognizable in the bytecode, so methods must be + declared public to be overridden in any subtype or to be called + from code in a later compile using the target type as a library. + </para> <para> Other AspectJ implementations, indeed, future versions of ajc, may |