summaryrefslogtreecommitdiffstats
path: root/ajde/testdata
diff options
context:
space:
mode:
authormkersten <mkersten>2003-08-14 09:07:44 +0000
committermkersten <mkersten>2003-08-14 09:07:44 +0000
commitb5d8b449c79cbedc82e03381cc459ae8c8ae9718 (patch)
tree839c55908b7814d7fab40208b1c2afaa5fb84483 /ajde/testdata
parentbffcd4c30591bce89ba938325159374e1ea1ea96 (diff)
downloadaspectj-b5d8b449c79cbedc82e03381cc459ae8c8ae9718.tar.gz
aspectj-b5d8b449c79cbedc82e03381cc459ae8c8ae9718.zip
Updated org.aspectj.asm relationship model to string-handle-based API in order to support adding and removing relationships at any point in the compilation cycle, and to support external tools building relationships (e.g. JDT's incremental containment hierarchy builder). Also made inter-type declaration relationships show up in the model.
Diffstat (limited to 'ajde/testdata')
-rw-r--r--ajde/testdata/examples/coverage/ModelCoverage.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/ajde/testdata/examples/coverage/ModelCoverage.java b/ajde/testdata/examples/coverage/ModelCoverage.java
index cb7b8391b..075bddc3b 100644
--- a/ajde/testdata/examples/coverage/ModelCoverage.java
+++ b/ajde/testdata/examples/coverage/ModelCoverage.java
@@ -10,9 +10,13 @@ class Point {
public Point() { }
- public int getX() { return x; }
+ public int getX() {
+ return x;
+ }
- public void setX(int x) { this.x = x; }
+ public void setX(int x) {
+ this.x = x;
+ }
public int changeX(int x) {
this.x = x;