diff options
author | aclement <aclement> | 2004-08-17 09:43:12 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-08-17 09:43:12 +0000 |
commit | cd4aeb90df088cb6b9d817298529ac8d54e2b8eb (patch) | |
tree | e5c34620ec1ee022e12a22ae0314c89f03a1d74c /testing | |
parent | a2469c733c9f65514c3949cb1cc7254495011894 (diff) | |
download | aspectj-cd4aeb90df088cb6b9d817298529ac8d54e2b8eb.tar.gz aspectj-cd4aeb90df088cb6b9d817298529ac8d54e2b8eb.zip |
remaining fix for 72016 (problem/type information flowing through AJDE)
Diffstat (limited to 'testing')
-rw-r--r-- | testing/src/org/aspectj/testing/xml/SoftMessage.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/src/org/aspectj/testing/xml/SoftMessage.java b/testing/src/org/aspectj/testing/xml/SoftMessage.java index 3f26e1509..cec8baf71 100644 --- a/testing/src/org/aspectj/testing/xml/SoftMessage.java +++ b/testing/src/org/aspectj/testing/xml/SoftMessage.java @@ -40,6 +40,7 @@ public class SoftMessage implements IMessage { private ISourceLocation sourceLocation; private String details; private int id; + private int sourceStart,sourceEnd; private final ArrayList extraSourceLocations = new ArrayList(); //private ISourceLocation pseudoSourceLocation; // set directly @@ -332,6 +333,22 @@ public class SoftMessage implements IMessage { public void setID(int id) { this.id = id; } + + public int getSourceStart() { + return sourceStart; + } + + public void setSourceStart(int s) { + sourceStart = s; + } + + public int getSourceEnd() { + return sourceStart; + } + + public void setSourceEnd(int s) { + sourceEnd = s; + } /* (non-Javadoc) * @see org.aspectj.bridge.IMessage#getExtraSourceLocations() |