changes.
[IRC.git] / Robust / src / Analysis / SSJava / GlobalFlowNode.java
index 03f96b28fdac672e9052d7c1aa04f429db840701..5b7cfb07be589fc3801281f62d19b6dcce52c969 100644 (file)
@@ -6,9 +6,19 @@ public class GlobalFlowNode {
 
   NTuple<Location> locTuple;
   CompositeLocation compLoc;
+  boolean isParamNodeWithIncomingFlows;
 
   public GlobalFlowNode(NTuple<Location> in) {
     locTuple = in;
+    isParamNodeWithIncomingFlows = false;
+  }
+
+  public void setParamNodeWithIncomingFlows(boolean in) {
+    isParamNodeWithIncomingFlows = in;
+  }
+
+  public boolean isParamNodeWithIncomingFlows() {
+    return isParamNodeWithIncomingFlows;
   }
 
   public int hashCode() {