+++ /dev/null
-bin
-
-*.ajsym
+++ /dev/null
-src/Main.java\r
-src/testsrc/TestProperties.java\r
+++ /dev/null
-src/aspects/Logging.java\r
+++ /dev/null
-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);
- }
-}
+++ /dev/null
-/*
- * 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());
- }
-}
+++ /dev/null
-/*
- * 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);
- }
-}
+++ /dev/null
-test=test
\ No newline at end of file