JAL-1479 applet build debug
[jalview.git] / src / jalview / ws / sifts / SiftsSettings.java
index c666e2c..5554658 100644 (file)
@@ -4,6 +4,8 @@ public class SiftsSettings
 {
   private static boolean mapWithSifts = false;
 
+  private static String siftDownloadDirectory;
+
   public static boolean isMapWithSifts()
   {
     return mapWithSifts;
@@ -13,4 +15,14 @@ public class SiftsSettings
   {
     SiftsSettings.mapWithSifts = mapWithSifts;
   }
+
+  public static String getSiftDownloadDirectory()
+  {
+    return siftDownloadDirectory;
+  }
+
+  public static void setSiftDownloadDirectory(String siftDownloadDirectory)
+  {
+    SiftsSettings.siftDownloadDirectory = siftDownloadDirectory;
+  }
 }