JAL-1551 spotlessApply
[jalview.git] / src / jalview / datamodel / annotations / AnnotationRowBuilder.java
index 573b1a9..c9b8f18 100644 (file)
@@ -1,7 +1,8 @@
 package jalview.datamodel.annotations;
 
-import jalview.datamodel.AlignmentAnnotation.TFType;
 import jalview.datamodel.Annotation;
+import jalview.structure.StructureImportSettings;
+import jalview.structure.StructureImportSettings.TFType;
 
 public class AnnotationRowBuilder
 {
@@ -17,14 +18,14 @@ public class AnnotationRowBuilder
   /**
    * the type of temperature factor plot (if it is one)
    */
-  private TFType tfType = TFType.DEFAULT;
+  private StructureImportSettings.TFType tfType = StructureImportSettings.TFType.DEFAULT;
 
-  public void setTFType(TFType t)
+  public void setTFType(StructureImportSettings.TFType t)
   {
     tfType = t;
   }
 
-  public TFType getTFType()
+  public StructureImportSettings.TFType getTFType()
   {
     return tfType;
   }
@@ -96,7 +97,8 @@ public class AnnotationRowBuilder
     name = string;
   }
 
-  public AnnotationRowBuilder(String name, float min, float max, TFType tft)
+  public AnnotationRowBuilder(String name, float min, float max,
+          StructureImportSettings.TFType tft)
   {
     this(name, min, max);
     setTFType(tft);