Merge branch 'develop' into bug/JAL-4289_group_boundary_not_drawn_properly_in_fastpai...
[jalview.git] / src / jalview / io / DataSourceType.java
index 6d00a7d..c983dfe 100644 (file)
@@ -28,4 +28,9 @@ public enum DataSourceType
   {
     return this != FILE;
   }
+
+  public boolean isUrl()
+  {
+    return this == URL || this == RELATIVE_URL;
+  }
 }