JAL-1479 applet build debug
[jalview.git] / src / jalview / ws / sifts / SiftsSettings.java
1 package jalview.ws.sifts;
2
3 public class SiftsSettings
4 {
5   private static boolean mapWithSifts = false;
6
7   private static String siftDownloadDirectory;
8
9   public static boolean isMapWithSifts()
10   {
11     return mapWithSifts;
12   }
13
14   public static void setMapWithSifts(boolean mapWithSifts)
15   {
16     SiftsSettings.mapWithSifts = mapWithSifts;
17   }
18
19   public static String getSiftDownloadDirectory()
20   {
21     return siftDownloadDirectory;
22   }
23
24   public static void setSiftDownloadDirectory(String siftDownloadDirectory)
25   {
26     SiftsSettings.siftDownloadDirectory = siftDownloadDirectory;
27   }
28 }