JAL-4279 suppress error dialogs raised by file loader when working in batch mode
[jalview.git] / src / jalview / bin / Jalview.java
index efd2177..eabad91 100755 (executable)
@@ -1978,4 +1978,9 @@ public class Jalview
     return bootstrapArgs;
   }
 
+  public static boolean isBatchMode()
+  {
+    return getInstance()!=null && (getInstance().desktop == null || getInstance().desktop.isInBatchMode());
+  }
+
 }