Jalview.isInteractive()
authorBobHanson <hansonr@stolaf.edu>
Mon, 8 Jun 2020 21:57:51 +0000 (16:57 -0500)
committerBobHanson <hansonr@stolaf.edu>
Mon, 8 Jun 2020 21:57:51 +0000 (16:57 -0500)
src/jalview/bin/Jalview.java

index 74babbb..b6fc7e8 100755 (executable)
@@ -2094,5 +2094,17 @@ public class Jalview implements ApplicationSingletonI, JalviewJSApi
     // + " " + status);
   }
 
+  private static boolean isInteractive = true;
+
+  public static boolean isInteractive()
+  {
+    return isInteractive;
+  }
+
+  public static void setInteractive(boolean tf)
+  {
+    isInteractive = tf;
+  }
+
 }