diff options
author | aclement <aclement> | 2005-11-25 13:42:46 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-11-25 13:42:46 +0000 |
commit | 27f3f0d3b25ecf86880416a509f39e537d4abc7e (patch) | |
tree | dff2bac3257d1125474a7bb9085e72add711e5f2 /docs/adk15ProgGuideDB/generics.xml | |
parent | 45c56831ac368e64270c87e781981d482509a888 (diff) | |
download | aspectj-27f3f0d3b25ecf86880416a509f39e537d4abc7e.tar.gz aspectj-27f3f0d3b25ecf86880416a509f39e537d4abc7e.zip |
last bits for 112105
Diffstat (limited to 'docs/adk15ProgGuideDB/generics.xml')
-rw-r--r-- | docs/adk15ProgGuideDB/generics.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/adk15ProgGuideDB/generics.xml b/docs/adk15ProgGuideDB/generics.xml index 4b75584b4..65c17a223 100644 --- a/docs/adk15ProgGuideDB/generics.xml +++ b/docs/adk15ProgGuideDB/generics.xml @@ -1171,13 +1171,13 @@ * Matches at an addChild join point for the parent type P and child type C */ public pointcut addingChild(Parent p, Child c) : - execution(* Parent.addChild(Child)) && this(p) && args(c); + execution(* ParentHasChildren.addChild(ChildHasParent)) && this(p) && args(c); /** * Matches at a removeChild join point for the parent type P and child type C */ public pointcut removingChild(Parent p, Child c) : - execution(* Parent.removeChild(Child)) && this(p) && args(c); + execution(* ParentHasChildren.removeChild(ChildHasParent)) && this(p) && args(c); } |