]> source.dussan.org Git - aspectj.git/commitdiff
148190#32
authoraclement <aclement>
Mon, 15 Jan 2007 08:45:50 +0000 (08:45 +0000)
committeraclement <aclement>
Mon, 15 Jan 2007 08:45:50 +0000 (08:45 +0000)
33 files changed:
ajde/testdata/WeaveInfoMessagesTest/AspectAdvice.aj [deleted file]
ajde/testdata/WeaveInfoMessagesTest/AspectDeclare.aj [deleted file]
ajde/testdata/WeaveInfoMessagesTest/AspectDeclareAnnotations.aj [deleted file]
ajde/testdata/WeaveInfoMessagesTest/AspectDeclareExtends.aj [deleted file]
ajde/testdata/WeaveInfoMessagesTest/AspectDeclareSoft.aj [deleted file]
ajde/testdata/WeaveInfoMessagesTest/AspectITD.aj [deleted file]
ajde/testdata/WeaveInfoMessagesTest/AspectInPackage.aj [deleted file]
ajde/testdata/WeaveInfoMessagesTest/Empty.lst [deleted file]
ajde/testdata/WeaveInfoMessagesTest/Five.lst [deleted file]
ajde/testdata/WeaveInfoMessagesTest/Four.lst [deleted file]
ajde/testdata/WeaveInfoMessagesTest/One.lst [deleted file]
ajde/testdata/WeaveInfoMessagesTest/Seven.lst [deleted file]
ajde/testdata/WeaveInfoMessagesTest/Simple.java [deleted file]
ajde/testdata/WeaveInfoMessagesTest/Six.lst [deleted file]
ajde/testdata/WeaveInfoMessagesTest/Three.lst [deleted file]
ajde/testdata/WeaveInfoMessagesTest/Two.lst [deleted file]
ajde/testdata/WeaveInfoMessagesTest/a.lst [deleted file]
ajde/testdata/WeaveInfoMessagesTest/build.xml [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.nodebug.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.package.jar.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.package.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/advice.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/declare.annotation.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/declare.extends.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.binary.nodebug.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.binary.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.nodebug.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/declare1.nodebug.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/declare1.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/itd.nodebug.txt [deleted file]
ajde/testdata/WeaveInfoMessagesTest/expected/itd.txt [deleted file]

diff --git a/ajde/testdata/WeaveInfoMessagesTest/AspectAdvice.aj b/ajde/testdata/WeaveInfoMessagesTest/AspectAdvice.aj
deleted file mode 100644 (file)
index 7ced0ba..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-// Simple aspect that tramples all over Simple.java\r
-\r
-public aspect AspectAdvice {\r
-\r
-  // Go through all the kinds of things that might affect a type:\r
-  pointcut methodRunning(): execution(* *(..)) && !execution(* main(..));\r
-  \r
-  before(): methodRunning() {\r
-       System.err.println("BEFORE ADVICE");\r
-  }\r
-  \r
-  after(): methodRunning() {\r
-       System.err.println("AFTER ADVICE");\r
-  }\r
-\r
-  after() returning: methodRunning() {\r
-       System.err.println("AFTER RETURNING ADVICE");\r
-  }\r
-\r
-  after() throwing : methodRunning() {\r
-       System.err.println("AFTER THROWING ADVICE");\r
-  }\r
-  \r
-  void around(): execution(* main(..)) && !cflow(adviceexecution()){\r
-       System.err.println("AROUND ADVICE");\r
-       proceed();\r
-  }\r
\r
\r
-  interface markerInterface {  \r
-  }    \r
-}\r
diff --git a/ajde/testdata/WeaveInfoMessagesTest/AspectDeclare.aj b/ajde/testdata/WeaveInfoMessagesTest/AspectDeclare.aj
deleted file mode 100644 (file)
index e626612..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Simple aspect that tramples all over Simple.java\r
-\r
-public aspect AspectDeclare {\r
-       \r
-  pointcut methodRunning(): execution(* *(..));\r
-  \r
-  declare parents: Simple implements MarkerInterface;\r
-  \r
-//  declare parents: Simple extends InTheWay;\r
-  \r
-//  declare soft: \r
-//  \r
-//  declare precedence:\r
-//  \r
-//  declare warning:\r
-//  \r
-//  declare error:\r
-//  \r
-}\r
-\r
-  \r
-interface MarkerInterface {}\r
-\r
-class InTheWay {}
\ No newline at end of file
diff --git a/ajde/testdata/WeaveInfoMessagesTest/AspectDeclareAnnotations.aj b/ajde/testdata/WeaveInfoMessagesTest/AspectDeclareAnnotations.aj
deleted file mode 100644 (file)
index 46bda48..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// little aspect and class for testing declaration of annotations
-
-@interface anInterface {}
-
-public aspect AspectDeclareAnnotations{
-
-  declare @type : Test : @anInterface;
-  declare @constructor : Test.new(String,int) : @anInterface;
-  declare @method : int Test.fac(int) : @anInterface;
-  declare @field : int Test.a : @anInterface;
-
-}
-
-class Test{
-
-  public Test(String say, int something){
-    System.out.println(say + something);
-  }
-
-  public int fac(int n){
-   return (n == 0)? 1 : n * fac(n-1);
-  }
-
-  public int a = 1;
-}
diff --git a/ajde/testdata/WeaveInfoMessagesTest/AspectDeclareExtends.aj b/ajde/testdata/WeaveInfoMessagesTest/AspectDeclareExtends.aj
deleted file mode 100644 (file)
index f250515..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Simple aspect that tramples all over Simple.java\r
-\r
-public aspect AspectDeclareExtends {\r
-       \r
-  pointcut methodRunning(): execution(* *(..));\r
-  \r
-  declare parents: Simple extends InTheWay;\r
-  \r
-//  declare soft: \r
-//  \r
-//  declare precedence:\r
-//  \r
-//  declare warning:\r
-//  \r
-//  declare error:\r
-//  \r
-}\r
-\r
-  \r
-interface MarkerInterface {}\r
-\r
-class InTheWay {}\r
diff --git a/ajde/testdata/WeaveInfoMessagesTest/AspectDeclareSoft.aj b/ajde/testdata/WeaveInfoMessagesTest/AspectDeclareSoft.aj
deleted file mode 100644 (file)
index f725567..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-\r
-public aspect AspectDeclareSoft {\r
-       \r
-  declare soft: MyException: execution(* main(..));\r
-\r
-  declare soft: Exception+: execution(* main(..));\r
-\r
-}\r
-class MyException extends Exception {}\r
diff --git a/ajde/testdata/WeaveInfoMessagesTest/AspectITD.aj b/ajde/testdata/WeaveInfoMessagesTest/AspectITD.aj
deleted file mode 100644 (file)
index 1f47b33..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// Simple aspect that tramples all over Simple.java\r
-\r
-public aspect AspectITD {\r
-       \r
-  int Simple.fieldint = 5;\r
-  \r
-  String Simple.fieldstring = "hello";\r
-  \r
-  public int Simple.returnint() {\r
-       return 5;\r
-  }\r
-  \r
-  public String Simple.returnstring() {\r
-       return "abc";\r
-  }\r
\r
-}
\ No newline at end of file
diff --git a/ajde/testdata/WeaveInfoMessagesTest/AspectInPackage.aj b/ajde/testdata/WeaveInfoMessagesTest/AspectInPackage.aj
deleted file mode 100644 (file)
index 74ff94b..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-package pkg;
-
-public aspect AspectInPackage {
-
-       pointcut p() : execution(* *.*(..));
-
-       before() : p() {
-       }
-
-}
diff --git a/ajde/testdata/WeaveInfoMessagesTest/Empty.lst b/ajde/testdata/WeaveInfoMessagesTest/Empty.lst
deleted file mode 100644 (file)
index 2e3d99c..0000000
+++ /dev/null
@@ -1 +0,0 @@
--showWeaveInfo\r
diff --git a/ajde/testdata/WeaveInfoMessagesTest/Five.lst b/ajde/testdata/WeaveInfoMessagesTest/Five.lst
deleted file mode 100644 (file)
index 34b752f..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-Simple.java\r
--showWeaveInfo\r
-AspectDeclareSoft.aj\r
diff --git a/ajde/testdata/WeaveInfoMessagesTest/Four.lst b/ajde/testdata/WeaveInfoMessagesTest/Four.lst
deleted file mode 100644 (file)
index 3f30efb..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-AspectDeclareExtends.aj\r
-Simple.java\r
--showWeaveInfo\r
diff --git a/ajde/testdata/WeaveInfoMessagesTest/One.lst b/ajde/testdata/WeaveInfoMessagesTest/One.lst
deleted file mode 100644 (file)
index e85b4af..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-AspectAdvice.aj\r
-Simple.java\r
--showWeaveInfo\r
diff --git a/ajde/testdata/WeaveInfoMessagesTest/Seven.lst b/ajde/testdata/WeaveInfoMessagesTest/Seven.lst
deleted file mode 100644 (file)
index b75e472..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
--1.5
-AspectDeclareAnnotations.aj
diff --git a/ajde/testdata/WeaveInfoMessagesTest/Simple.java b/ajde/testdata/WeaveInfoMessagesTest/Simple.java
deleted file mode 100644 (file)
index 9340875..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// A simple class, interfered with by all sorts of advice !
-
-public class Simple {
-       
-       public void m1() {
-               
-       }
-       
-       public String m2() {
-               return "a";
-       }
-       
-       public static void main(String[] argv) {
-               
-       }
-       
-       private void mSecret() {
-               
-       }
-       
-}
\ No newline at end of file
diff --git a/ajde/testdata/WeaveInfoMessagesTest/Six.lst b/ajde/testdata/WeaveInfoMessagesTest/Six.lst
deleted file mode 100644 (file)
index 51eaf07..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
--showWeaveInfo
--1.5
-AspectDeclareAnnotations.aj
diff --git a/ajde/testdata/WeaveInfoMessagesTest/Three.lst b/ajde/testdata/WeaveInfoMessagesTest/Three.lst
deleted file mode 100644 (file)
index 141c6c9..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-AspectDeclare.aj\r
-Simple.java\r
--showWeaveInfo\r
diff --git a/ajde/testdata/WeaveInfoMessagesTest/Two.lst b/ajde/testdata/WeaveInfoMessagesTest/Two.lst
deleted file mode 100644 (file)
index cb891a8..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-AspectITD.aj\r
-Simple.java\r
--showWeaveInfo\r
diff --git a/ajde/testdata/WeaveInfoMessagesTest/a.lst b/ajde/testdata/WeaveInfoMessagesTest/a.lst
deleted file mode 100644 (file)
index 5df1271..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-Simple.jar\r
--showWeaveInfo\r
diff --git a/ajde/testdata/WeaveInfoMessagesTest/build.xml b/ajde/testdata/WeaveInfoMessagesTest/build.xml
deleted file mode 100644 (file)
index 774291d..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-<project name="aspectj-examples" default="spacewar" basedir=".">
-
-    <!--target name="init.taskdefs"-->
-      <taskdef resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties">
-          <classpath> 
-            <pathelement path="c:\aspectj1.2\lib\aspectjtools.jar"/>
-          </classpath>
-      </taskdef>
-    <!--/target-->
-
-    <target name="spacewar">
-       <iajc destdir="." argfiles="Two.lst" debug="off"
-               fork="true" forkclasspath="c:\aspectj1.2\lib\aspectjtools.jar"
-        classpath="c:\aspectj1.2\lib\aspectjrt.jar"/>
-
-    </target>
-
-</project>
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.nodebug.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.nodebug.txt
deleted file mode 100644 (file)
index eab1c86..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (no debug info available) advised by before advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:8(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (no debug info available) advised by after advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:12(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (no debug info available) advised by afterReturning advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:16(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (no debug info available) advised by afterThrowing advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:20(from AspectAdvice.aj))
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (no debug info available) advised by before advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:8(from AspectAdvice.aj))
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (no debug info available) advised by after advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:12(from AspectAdvice.aj))
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (no debug info available) advised by afterReturning advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:16(from AspectAdvice.aj))
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (no debug info available) advised by afterThrowing advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:20(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.main(java.lang.String[]))' in Type 'Simple' (no debug info available) advised by around advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:24(from AspectAdvice.aj)) [with runtime test]
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (no debug info available) advised by before advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:8(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (no debug info available) advised by after advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:12(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (no debug info available) advised by afterReturning advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:16(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (no debug info available) advised by afterThrowing advice from 'AspectAdvice' (AspectAdvice_nodebug.jar!AspectAdvice.class:20(from AspectAdvice.aj))
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.package.jar.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.package.jar.txt
deleted file mode 100644 (file)
index 1c9e788..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (Simple.java:5) advised by before advice from 'pkg.AspectInPackage' (AspectInPackage.jar!AspectInPackage.class:7(from AspectInPackage.aj))
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (Simple.java:9) advised by before advice from 'pkg.AspectInPackage' (AspectInPackage.jar!AspectInPackage.class:7(from AspectInPackage.aj))
-Join point 'method-execution(void Simple.main(java.lang.String[]))' in Type 'Simple' (Simple.java:13) advised by before advice from 'pkg.AspectInPackage' (AspectInPackage.jar!AspectInPackage.class:7(from AspectInPackage.aj))
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (Simple.java:17) advised by before advice from 'pkg.AspectInPackage' (AspectInPackage.jar!AspectInPackage.class:7(from AspectInPackage.aj))
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.package.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.package.txt
deleted file mode 100644 (file)
index d867800..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (Simple.java:5) advised by before advice from 'pkg.AspectInPackage' (AspectInPackage.class:7(from AspectInPackage.aj))
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (Simple.java:9) advised by before advice from 'pkg.AspectInPackage' (AspectInPackage.class:7(from AspectInPackage.aj))
-Join point 'method-execution(void Simple.main(java.lang.String[]))' in Type 'Simple' (Simple.java:13) advised by before advice from 'pkg.AspectInPackage' (AspectInPackage.class:7(from AspectInPackage.aj))
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (Simple.java:17) advised by before advice from 'pkg.AspectInPackage' (AspectInPackage.class:7(from AspectInPackage.aj))
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/advice.binary.txt
deleted file mode 100644 (file)
index 9ed2ca0..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (Simple.java:5) advised by before advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:8(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (Simple.java:5) advised by after advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:12(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (Simple.java:5) advised by afterReturning advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:16(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (Simple.java:5) advised by afterThrowing advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:20(from AspectAdvice.aj))
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (Simple.java:9) advised by before advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:8(from AspectAdvice.aj))
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (Simple.java:9) advised by after advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:12(from AspectAdvice.aj))
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (Simple.java:9) advised by afterReturning advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:16(from AspectAdvice.aj))
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (Simple.java:9) advised by afterThrowing advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:20(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.main(java.lang.String[]))' in Type 'Simple' (Simple.java:13) advised by around advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:24(from AspectAdvice.aj)) [with runtime test]
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (Simple.java:17) advised by before advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:8(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (Simple.java:17) advised by after advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:12(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (Simple.java:17) advised by afterReturning advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:16(from AspectAdvice.aj))
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (Simple.java:17) advised by afterThrowing advice from 'AspectAdvice' (AspectAdvice.jar!AspectAdvice.class:20(from AspectAdvice.aj))
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/advice.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/advice.txt
deleted file mode 100644 (file)
index 03d6c45..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (Simple.java:5) advised by before advice from 'AspectAdvice' (AspectAdvice.aj:8)
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (Simple.java:5) advised by after advice from 'AspectAdvice' (AspectAdvice.aj:12)
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (Simple.java:5) advised by afterReturning advice from 'AspectAdvice' (AspectAdvice.aj:16)
-Join point 'method-execution(void Simple.m1())' in Type 'Simple' (Simple.java:5) advised by afterThrowing advice from 'AspectAdvice' (AspectAdvice.aj:20)
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (Simple.java:9) advised by before advice from 'AspectAdvice' (AspectAdvice.aj:8)
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (Simple.java:9) advised by after advice from 'AspectAdvice' (AspectAdvice.aj:12)
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (Simple.java:9) advised by afterReturning advice from 'AspectAdvice' (AspectAdvice.aj:16)
-Join point 'method-execution(java.lang.String Simple.m2())' in Type 'Simple' (Simple.java:9) advised by afterThrowing advice from 'AspectAdvice' (AspectAdvice.aj:20)
-Join point 'method-execution(void Simple.main(java.lang.String[]))' in Type 'Simple' (Simple.java:13) advised by around advice from 'AspectAdvice' (AspectAdvice.aj:24) [with runtime test]
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (Simple.java:17) advised by before advice from 'AspectAdvice' (AspectAdvice.aj:8)
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (Simple.java:17) advised by after advice from 'AspectAdvice' (AspectAdvice.aj:12)
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (Simple.java:17) advised by afterReturning advice from 'AspectAdvice' (AspectAdvice.aj:16)
-Join point 'method-execution(void Simple.mSecret())' in Type 'Simple' (Simple.java:17) advised by afterThrowing advice from 'AspectAdvice' (AspectAdvice.aj:20)
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/declare.annotation.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/declare.annotation.txt
deleted file mode 100644 (file)
index 7daacb7..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-'Test' (AspectDeclareAnnotations.aj:14) is annotated with @anInterface type annotation from 'AspectDeclareAnnotations' (AspectDeclareAnnotations.aj:7)
-'public void Test.new(String,int)' (AspectDeclareAnnotations.aj:16) is annotated with @anInterface constructor annotation from 'AspectDeclareAnnotations' (AspectDeclareAnnotations.aj:8)
-'public int Test.fac(int)' (AspectDeclareAnnotations.aj:20) is annotated with @anInterface method annotation from 'AspectDeclareAnnotations' (AspectDeclareAnnotations.aj:9)
-'public int a' of type 'Test' (AspectDeclareAnnotations.aj) is annotated with @anInterface field annotation from 'AspectDeclareAnnotations' (AspectDeclareAnnotations.aj:10)
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/declare.extends.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/declare.extends.txt
deleted file mode 100644 (file)
index 29fb455..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Setting superclass of type 'Simple' (Simple.java) to 'InTheWay' (AspectDeclareExtends.aj)
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.binary.nodebug.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.binary.nodebug.txt
deleted file mode 100644 (file)
index 2a326c0..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-Softening exceptions in type 'Simple' (no debug info available) as defined by aspect 'AspectDeclareSoft' (AspectDeclareSoft_nodebug.jar!AspectDeclareSoft.class:4(from AspectDeclareSoft.aj))
-Softening exceptions in type 'Simple' (no debug info available) as defined by aspect 'AspectDeclareSoft' (AspectDeclareSoft_nodebug.jar!AspectDeclareSoft.class:6(from AspectDeclareSoft.aj))
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.binary.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.binary.txt
deleted file mode 100644 (file)
index e1f3522..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-Softening exceptions in type 'Simple' (Simple.java:13) as defined by aspect 'AspectDeclareSoft' (AspectDeclareSoft.jar!AspectDeclareSoft.class:4(from AspectDeclareSoft.aj))
-Softening exceptions in type 'Simple' (Simple.java:13) as defined by aspect 'AspectDeclareSoft' (AspectDeclareSoft.jar!AspectDeclareSoft.class:6(from AspectDeclareSoft.aj))
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.nodebug.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.nodebug.txt
deleted file mode 100644 (file)
index d64a942..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-Softening exceptions in type 'Simple' (no debug info available) as defined by aspect 'AspectDeclareSoft' (AspectDeclareSoft.aj:4)
-Softening exceptions in type 'Simple' (no debug info available) as defined by aspect 'AspectDeclareSoft' (AspectDeclareSoft.aj:6)
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/declare.soft.txt
deleted file mode 100644 (file)
index 234d322..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-Softening exceptions in type 'Simple' (Simple.java:13) as defined by aspect 'AspectDeclareSoft' (AspectDeclareSoft.aj:6)
-Softening exceptions in type 'Simple' (Simple.java:13) as defined by aspect 'AspectDeclareSoft' (AspectDeclareSoft.aj:4)
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/declare1.nodebug.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/declare1.nodebug.txt
deleted file mode 100644 (file)
index 1da4b50..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Extending interface set for type 'Simple' (no debug info available) to include 'MarkerInterface' (AspectDeclare.aj)
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/declare1.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/declare1.txt
deleted file mode 100644 (file)
index b05cdfb..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Extending interface set for type 'Simple' (Simple.java) to include 'MarkerInterface' (AspectDeclare.aj)
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/itd.nodebug.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/itd.nodebug.txt
deleted file mode 100644 (file)
index 0664ed4..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-Type 'Simple' (no debug info available) has intertyped field from 'AspectITD' (AspectITD.aj:'int Simple.fieldint')
-Type 'Simple' (no debug info available) has intertyped field from 'AspectITD' (AspectITD.aj:'java.lang.String Simple.fieldstring')
-Type 'Simple' (no debug info available) has intertyped method from 'AspectITD' (AspectITD.aj:'int Simple.returnint()')
-Type 'Simple' (no debug info available) has intertyped method from 'AspectITD' (AspectITD.aj:'java.lang.String Simple.returnstring()')
diff --git a/ajde/testdata/WeaveInfoMessagesTest/expected/itd.txt b/ajde/testdata/WeaveInfoMessagesTest/expected/itd.txt
deleted file mode 100644 (file)
index eeb8424..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-Type 'Simple' (Simple.java) has intertyped field from 'AspectITD' (AspectITD.aj:'int Simple.fieldint')
-Type 'Simple' (Simple.java) has intertyped field from 'AspectITD' (AspectITD.aj:'java.lang.String Simple.fieldstring')
-Type 'Simple' (Simple.java) has intertyped method from 'AspectITD' (AspectITD.aj:'int Simple.returnint()')
-Type 'Simple' (Simple.java) has intertyped method from 'AspectITD' (AspectITD.aj:'java.lang.String Simple.returnstring()')