diff options
Diffstat (limited to 'tests/incrementalju/inpathDirTests/classUpdated/src/World.java')
-rw-r--r-- | tests/incrementalju/inpathDirTests/classUpdated/src/World.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/incrementalju/inpathDirTests/classUpdated/src/World.java b/tests/incrementalju/inpathDirTests/classUpdated/src/World.java new file mode 100644 index 000000000..a5d23f10d --- /dev/null +++ b/tests/incrementalju/inpathDirTests/classUpdated/src/World.java @@ -0,0 +1,19 @@ +/* ******************************************************************* + * Copyright (c) 2004 IBM Corporation + * All rights reserved. + * This program and the accompanying materials are made available + * under the terms of the Common Public License v1.0 + * which accompanies this distribution and is available at + * http://www.eclipse.org/legal/cpl-v10.html + * + * Contributors: + * Adrian Colyer, + * ******************************************************************/ + + +public aspect World { + + after() returning : execution(* Hello.*(..)) { + System.out.println("World"); + } +}
\ No newline at end of file |