aboutsummaryrefslogtreecommitdiffstats
path: root/testing/src
diff options
context:
space:
mode:
Diffstat (limited to 'testing/src')
-rw-r--r--testing/src/org/aspectj/testing/xml/SoftMessage.java9
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()