diff options
author | wisberg <wisberg> | 2003-05-27 09:30:21 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-05-27 09:30:21 +0000 |
commit | e289da390eb3c1dbc3789d53d0ee19fd5771d4a2 (patch) | |
tree | 77de85c95cf7fcfbaa4c741ebcf4be264b85bda9 /docs/test/antScriptTest/ec/module | |
parent | 44424b14e61b24ea0b89934d2b0107d1406d8232 (diff) | |
download | aspectj-e289da390eb3c1dbc3789d53d0ee19fd5771d4a2.tar.gz aspectj-e289da390eb3c1dbc3789d53d0ee19fd5771d4a2.zip |
tests for devguide script example
Diffstat (limited to 'docs/test/antScriptTest/ec/module')
-rw-r--r-- | docs/test/antScriptTest/ec/module/src/org/smart/app/Util.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/test/antScriptTest/ec/module/src/org/smart/app/Util.java b/docs/test/antScriptTest/ec/module/src/org/smart/app/Util.java new file mode 100644 index 000000000..19e4a0030 --- /dev/null +++ b/docs/test/antScriptTest/ec/module/src/org/smart/app/Util.java @@ -0,0 +1,10 @@ + +package org.smart.app; + +public class Util { + + public static final String utility(String s) { + System.out.println("called Util.utility(\"" + s +"\")"); + return s.toUpperCase(); + } +}
\ No newline at end of file |