changes + annotation generation
[IRC.git] / Robust / src / Analysis / SSJava / FlowNode.java
index 7ce39ed50055c8c9b4be6140ee22259a3d83ff88..c24d57763bc1230c39031c5f6e4912eccacada84 100644 (file)
@@ -23,6 +23,8 @@ public class FlowNode {
   // set true if this node stores a return value
   private boolean isReturn;
 
+  private boolean isDeclarationNode = false;
+
   public Set<FlowNode> getFieldNodeSet() {
     return fieldNodeSet;
   }
@@ -143,4 +145,12 @@ public class FlowNode {
     id += ">";
     return id;
   }
+
+  public void setDeclarationNode() {
+    isDeclarationNode = true;
+  }
+
+  public boolean isDeclaratonNode() {
+    return isDeclarationNode;
+  }
 }