JAL-1479 Refactored Sifts configuration preference in order to rectify applet build
[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   public static boolean isMapWithSifts()
8   {
9     return mapWithSifts;
10   }
11
12   public static void setMapWithSifts(boolean mapWithSifts)
13   {
14     SiftsSettings.mapWithSifts = mapWithSifts;
15   }
16 }