X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2Fannotations%2FAnnotationRowBuilder.java;fp=src%2Fjalview%2Fdatamodel%2Fannotations%2FAnnotationRowBuilder.java;h=c7e4549725aeba190f50c43df40db6ebb28fbd2f;hb=c3d402372ed9c45f1e4e7a7774d8037c4b8382bb;hp=b3d567a61fdd41ba6c82a162009ef45873c1ed6e;hpb=862dbed4080eb694f8c09fbfd81a5cf37eef2928;p=jalview.git diff --git a/src/jalview/datamodel/annotations/AnnotationRowBuilder.java b/src/jalview/datamodel/annotations/AnnotationRowBuilder.java index b3d567a..c7e4549 100644 --- a/src/jalview/datamodel/annotations/AnnotationRowBuilder.java +++ b/src/jalview/datamodel/annotations/AnnotationRowBuilder.java @@ -1,7 +1,6 @@ package jalview.datamodel.annotations; import jalview.datamodel.Annotation; -import jalview.structure.StructureImportSettings; import jalview.structure.StructureImportSettings.TFType; public class AnnotationRowBuilder @@ -18,14 +17,15 @@ public class AnnotationRowBuilder /** * the type of temperature factor plot (if it is one) */ - private StructureImportSettings.TFType tfType = StructureImportSettings.TFType.DEFAULT; + // private TFType tfType = TFType.DEFAULT; + private TFType tfType = null; - public void setTFType(StructureImportSettings.TFType t) + public void setTFType(TFType t) { tfType = t; } - public StructureImportSettings.TFType getTFType() + public TFType getTFType() { return tfType; } @@ -97,7 +97,7 @@ public class AnnotationRowBuilder name = string; } - public AnnotationRowBuilder(String name, float min, float max, StructureImportSettings.TFType tft) + public AnnotationRowBuilder(String name, float min, float max, TFType tft) { this(name, min, max); setTFType(tft);