changes.
[IRC.git] / Robust / src / Analysis / SSJava / Location.java
index fbab568eb355b668ea24dfdd6f2f3273d691d810..7fe9331a1dcd81824e391afe5ce09f6d74b85970 100644 (file)
@@ -12,6 +12,7 @@ public class Location implements TypeExtension {
   int type;
   Descriptor d;
   String loc;
+  Descriptor locDesc;
 
   public Location(Descriptor d, String loc) {
     this.d = d;
@@ -29,6 +30,14 @@ public class Location implements TypeExtension {
     }
   }
 
+  public void setLocDescriptor(Descriptor d) {
+    locDesc = d;
+  }
+
+  public Descriptor getLocDescriptor() {
+    return locDesc;
+  }
+
   public void setType(int type) {
     this.type = type;
   }