JAL-1479 Refactored Sifts configuration preference in order to rectify applet build
[jalview.git] / src / jalview / ws / sifts / SiftsSettings.java
diff --git a/src/jalview/ws/sifts/SiftsSettings.java b/src/jalview/ws/sifts/SiftsSettings.java
new file mode 100644 (file)
index 0000000..c666e2c
--- /dev/null
@@ -0,0 +1,16 @@
+package jalview.ws.sifts;
+
+public class SiftsSettings
+{
+  private static boolean mapWithSifts = false;
+
+  public static boolean isMapWithSifts()
+  {
+    return mapWithSifts;
+  }
+
+  public static void setMapWithSifts(boolean mapWithSifts)
+  {
+    SiftsSettings.mapWithSifts = mapWithSifts;
+  }
+}