diff options
author | aclement <aclement> | 2004-08-16 16:44:13 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-08-16 16:44:13 +0000 |
commit | eb1d697f95742d25109b1d285db38da40464b340 (patch) | |
tree | 9a972366a4289ab721a235245c49c3b777b93cba /testing | |
parent | 6b1ef0ff7cfd1dbb985993fd5486c9ddf31b280d (diff) | |
download | aspectj-eb1d697f95742d25109b1d285db38da40464b340.tar.gz aspectj-eb1d697f95742d25109b1d285db38da40464b340.zip |
Fix for Bugzilla Bug 72016: No problem type information from AspectJ compiler / AJDE
Diffstat (limited to 'testing')
-rw-r--r-- | testing/src/org/aspectj/testing/xml/SoftMessage.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/src/org/aspectj/testing/xml/SoftMessage.java b/testing/src/org/aspectj/testing/xml/SoftMessage.java index 88869e757..3f26e1509 100644 --- a/testing/src/org/aspectj/testing/xml/SoftMessage.java +++ b/testing/src/org/aspectj/testing/xml/SoftMessage.java @@ -39,6 +39,7 @@ public class SoftMessage implements IMessage { private Throwable thrown; private ISourceLocation sourceLocation; private String details; + private int id; private final ArrayList extraSourceLocations = new ArrayList(); //private ISourceLocation pseudoSourceLocation; // set directly @@ -323,6 +324,14 @@ public class SoftMessage implements IMessage { public void setDetails(String string) { details = string; } + + public int getID() { + return id; + } + + public void setID(int id) { + this.id = id; + } /* (non-Javadoc) * @see org.aspectj.bridge.IMessage#getExtraSourceLocations() |