summaryrefslogtreecommitdiffstats
path: root/ajde/testdata
diff options
context:
space:
mode:
authormkersten <mkersten>2003-08-16 08:51:11 +0000
committermkersten <mkersten>2003-08-16 08:51:11 +0000
commit3a495aad88865d64d3e8ee005241e7edbe5a7a82 (patch)
treecdf50cf9c24640170898a00ec11e95b8c539253c /ajde/testdata
parenteb12f56518d08c54fc17047749a5d2d66b3c4181 (diff)
downloadaspectj-3a495aad88865d64d3e8ee005241e7edbe5a7a82.tar.gz
aspectj-3a495aad88865d64d3e8ee005241e7edbe5a7a82.zip
Fixed AJDT bug with truncation of labels (there was a weird substring call in AdviceActionDelegate). Fixed ASM/AJDT modifiers bug. Fixed ASM static initializers bug (we may want to change the way they show up, i.e. Added imports to ASM containment hierarchy. Fixed numerous AJBrwoser, JBuilder and NetBeans bugs.
Diffstat (limited to 'ajde/testdata')
-rw-r--r--ajde/testdata/examples/coverage/ModelCoverage.java19
1 files changed, 18 insertions, 1 deletions
diff --git a/ajde/testdata/examples/coverage/ModelCoverage.java b/ajde/testdata/examples/coverage/ModelCoverage.java
index 51fb54b89..4d9302548 100644
--- a/ajde/testdata/examples/coverage/ModelCoverage.java
+++ b/ajde/testdata/examples/coverage/ModelCoverage.java
@@ -1,10 +1,15 @@
import java.io.*;
-
+import java.util.List;
+
class Point {
int x;
static int sx;
+ {
+ System.out.println("");
+ }
+
{ x = 0; }
static { sx = 1; }
@@ -123,6 +128,18 @@ aspect AdviceCoverage {
}
+abstract class ModifiersCoverage {
+ private int a;
+ protected int b;
+ public int c;
+ int d;
+
+ static int staticA;
+ final int finalA = 0;
+
+ abstract void abstractM();
+}
+