diff options
author | wisberg <wisberg> | 2003-05-08 06:58:10 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-05-08 06:58:10 +0000 |
commit | 1fd101b96d7c8a194be2227d517ae63f9c519f5a (patch) | |
tree | 6b43dc8d2fe68013081174992411d45deb5692ee /docs/dist/doc/examples | |
parent | 812c943083102add6057f7a057effd28dd8e3363 (diff) | |
download | aspectj-1fd101b96d7c8a194be2227d517ae63f9c519f5a.tar.gz aspectj-1fd101b96d7c8a194be2227d517ae63f9c519f5a.zip |
changing after to after returning, with Jim's blessing.
Diffstat (limited to 'docs/dist/doc/examples')
-rw-r--r-- | docs/dist/doc/examples/spacewar/Debug.java | 16 | ||||
-rw-r--r-- | docs/dist/doc/examples/spacewar/Display.java | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/docs/dist/doc/examples/spacewar/Debug.java b/docs/dist/doc/examples/spacewar/Debug.java index b9a476e0e..a5d991661 100644 --- a/docs/dist/doc/examples/spacewar/Debug.java +++ b/docs/dist/doc/examples/spacewar/Debug.java @@ -94,7 +94,7 @@ aspect Debug { } } - after(): allConstructorsCut() { + after() returning: allConstructorsCut() { if (traceConstructors.getState()) { infoWin.println("done constructing " + thisJoinPoint.getSignature()); } @@ -111,7 +111,7 @@ aspect Debug { infoWin.println("begin initializing " + thisJoinPoint.getSignature()); } } - after(): allInitializationsCut() { + after() returning : allInitializationsCut() { if (traceConstructors.getState()) { infoWin.println("done initializing " + thisJoinPoint.getSignature()); } @@ -128,7 +128,7 @@ aspect Debug { infoWin.println("entering " + thisJoinPoint.getSignature()); } } - after(): allMethodsCut() { + after() returning : allMethodsCut() { if (traceMethods.getState()) { infoWin.println("exiting " + thisJoinPoint.getSignature()); } @@ -137,7 +137,7 @@ aspect Debug { /* * clock ticks */ - after(Object obj): + after(Object obj) returning : (target(obj) && (target(Game) || target(Registry) || target(SpaceObject))) @@ -149,7 +149,7 @@ aspect Debug { /* * registry contents */ - after(Registry registry): + after(Registry registry) returning : target(registry) && (call(void register(..)) || call(void unregister(..))) { if (traceRegistry.getState()) @@ -160,18 +160,18 @@ aspect Debug { /* * fire, collide, damage */ - after(): call(void Ship.fire()) { + after() returning : call(void Ship.fire()) { if (traceFireCollideDamage.getState()) infoWin.println("firing"); } - after(Ship ship, SpaceObject obj): + after(Ship ship, SpaceObject obj) returning : call(void Ship.handleCollision(SpaceObject)) && target(ship) && args(obj) { if (traceFireCollideDamage.getState()) infoWin.println(ship + " collides with " + obj); } - after(Ship shipA, Ship shipB): + after(Ship shipA, Ship shipB) returning : execution(void Ship.bounce(Ship, Ship)) && args(shipA, shipB) { if (traceFireCollideDamage.getState()) infoWin.println(shipA + " bounces with " + shipB); diff --git a/docs/dist/doc/examples/spacewar/Display.java b/docs/dist/doc/examples/spacewar/Display.java index a0f77b347..757cdd6e7 100644 --- a/docs/dist/doc/examples/spacewar/Display.java +++ b/docs/dist/doc/examples/spacewar/Display.java @@ -155,7 +155,7 @@ class Display extends Canvas { display.noticeSizeChange(); } - after(): call(void Game.clockTick()) { + after() returning : call(void Game.clockTick()) { Enumeration elements = DISPLAYS.elements(); while ( elements.hasMoreElements() ) { Display display = (Display)elements.nextElement(); |