Merge branch 'features/r2_11_2_alphafold/JAL-629' into features/JAL-3858_PAEsInProjects
[jalview.git] / src / jalview / io / DataSourceType.java
index 7e2aeab..6d00a7d 100644 (file)
@@ -23,4 +23,9 @@ package jalview.io;
 public enum DataSourceType
 {
   FILE, URL, PASTE, CLASSLOADER, RELATIVE_URL;
+
+  public boolean isDynamic()
+  {
+    return this != FILE;
+  }
 }