X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2Fannotations%2FAnnotationRowBuilder.java;h=b3d567a61fdd41ba6c82a162009ef45873c1ed6e;hb=34ce5193c8766085422c32544246d92f12d0c975;hp=573b1a941202c23a9483f69bcc430eeabc2dc349;hpb=a08e9842574394b84f2e79b060d55b6305afab33;p=jalview.git diff --git a/src/jalview/datamodel/annotations/AnnotationRowBuilder.java b/src/jalview/datamodel/annotations/AnnotationRowBuilder.java index 573b1a9..b3d567a 100644 --- a/src/jalview/datamodel/annotations/AnnotationRowBuilder.java +++ b/src/jalview/datamodel/annotations/AnnotationRowBuilder.java @@ -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,7 @@ 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);