diff options
author | aclement <aclement> | 2007-01-15 08:46:22 +0000 |
---|---|---|
committer | aclement <aclement> | 2007-01-15 08:46:22 +0000 |
commit | 1e76ec3f7e15bb1c943a2baec3f6ade6c9a7745d (patch) | |
tree | 930b095d23a5b463b3f6b866cf68e6c2f5625f64 /ajde | |
parent | c15e9cc0c51e1cc1357f4a526ea1218ad2eab441 (diff) | |
download | aspectj-1e76ec3f7e15bb1c943a2baec3f6ade6c9a7745d.tar.gz aspectj-1e76ec3f7e15bb1c943a2baec3f6ade6c9a7745d.zip |
148190#32
Diffstat (limited to 'ajde')
-rw-r--r-- | ajde/testdata/bug-36071a/.cvsignore | 3 | ||||
-rw-r--r-- | ajde/testdata/bug-36071a/config1.lst | 2 | ||||
-rw-r--r-- | ajde/testdata/bug-36071a/config2.lst | 1 | ||||
-rw-r--r-- | ajde/testdata/bug-36071a/src/Main.java | 22 | ||||
-rw-r--r-- | ajde/testdata/bug-36071a/src/aspects/Logging.java | 27 | ||||
-rw-r--r-- | ajde/testdata/bug-36071a/src/testsrc/TestProperties.java | 29 | ||||
-rw-r--r-- | ajde/testdata/bug-36071a/src/testsrc/test.props | 1 |
7 files changed, 0 insertions, 85 deletions
diff --git a/ajde/testdata/bug-36071a/.cvsignore b/ajde/testdata/bug-36071a/.cvsignore deleted file mode 100644 index 4a9c32528..000000000 --- a/ajde/testdata/bug-36071a/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -bin - -*.ajsym diff --git a/ajde/testdata/bug-36071a/config1.lst b/ajde/testdata/bug-36071a/config1.lst deleted file mode 100644 index 6ba2da52a..000000000 --- a/ajde/testdata/bug-36071a/config1.lst +++ /dev/null @@ -1,2 +0,0 @@ -src/Main.java
-src/testsrc/TestProperties.java
diff --git a/ajde/testdata/bug-36071a/config2.lst b/ajde/testdata/bug-36071a/config2.lst deleted file mode 100644 index c1fd90b45..000000000 --- a/ajde/testdata/bug-36071a/config2.lst +++ /dev/null @@ -1 +0,0 @@ -src/aspects/Logging.java
diff --git a/ajde/testdata/bug-36071a/src/Main.java b/ajde/testdata/bug-36071a/src/Main.java deleted file mode 100644 index 417fc6809..000000000 --- a/ajde/testdata/bug-36071a/src/Main.java +++ /dev/null @@ -1,22 +0,0 @@ -import java.io.IOException; - -/* - * Created on 30-Jul-03 - * - * To change this generated comment go to - * Window>Preferences>Java>Code Generation>Code and Comments - */ - -/** - * @author websterm - * - * To change this generated comment go to - * Window>Preferences>Java>Code Generation>Code and Comments - */ -public class Main { - - public static void main(String[] args) throws IOException { - String propsName = (args.length > 0)? args[0] : "test.props"; - new test.TestProperties().load(propsName); - } -} diff --git a/ajde/testdata/bug-36071a/src/aspects/Logging.java b/ajde/testdata/bug-36071a/src/aspects/Logging.java deleted file mode 100644 index 2e8ba485a..000000000 --- a/ajde/testdata/bug-36071a/src/aspects/Logging.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Created on 30-Jul-03 - * - * To change this generated comment go to - * Window>Preferences>Java>Code Generation>Code and Comments - */ -package aspects; - -/** - * @author websterm - * - * To change this generated comment go to - * Window>Preferences>Java>Code Generation>Code and Comments - */ -public aspect Logging { - - pointcut methods () : - execution(* *..*(..)) && !within(Logging); - - before () : methods () { - System.err.println("> " + thisJoinPoint.getSignature().toLongString()); - } - - after () : methods () { - System.err.println("< " + thisJoinPoint.getSignature().toLongString()); - } -} diff --git a/ajde/testdata/bug-36071a/src/testsrc/TestProperties.java b/ajde/testdata/bug-36071a/src/testsrc/TestProperties.java deleted file mode 100644 index 18139e035..000000000 --- a/ajde/testdata/bug-36071a/src/testsrc/TestProperties.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Created on 30-Jul-03 - * - * To change this generated comment go to - * Window>Preferences>Java>Code Generation>Code and Comments - */ -package test; - -import java.io.IOException; -import java.io.InputStream; -import java.util.Properties; - -/** - * @author websterm - * - * To change this generated comment go to - * Window>Preferences>Java>Code Generation>Code and Comments - */ -public class TestProperties { - - public void load (String name) throws IOException { - InputStream in = getClass().getResourceAsStream(name); -// System.out.println("? load() in=" + in); - Properties props = new Properties(); - props.load(in); - in.close(); - props.list(System.out); - } -} diff --git a/ajde/testdata/bug-36071a/src/testsrc/test.props b/ajde/testdata/bug-36071a/src/testsrc/test.props deleted file mode 100644 index 51e670ac7..000000000 --- a/ajde/testdata/bug-36071a/src/testsrc/test.props +++ /dev/null @@ -1 +0,0 @@ -test=test
\ No newline at end of file |