JAL-629 refactoring TFType. Remove i18n identification of annotation.
[jalview.git] / src / jalview / datamodel / annotations / AlphaFoldAnnotationRowBuilder.java
index fa48968..4e9553e 100644 (file)
@@ -1,18 +1,20 @@
 package jalview.datamodel.annotations;
 
-import jalview.datamodel.AlignmentAnnotation.TFType;
 import jalview.datamodel.Annotation;
-import jalview.util.MessageManager;
+import jalview.structure.StructureImportSettings;
+import jalview.structure.StructureImportSettings.TFType;
 
 public class AlphaFoldAnnotationRowBuilder extends AnnotationRowBuilder
 {
+  public static final String LABEL = "Alphafold Reliability";
+
   public AlphaFoldAnnotationRowBuilder()
   {
-    super(MessageManager.getString("label.alphafold_reliability"));
+    super(LABEL);
     min = 0;
     max = 100;
     hasMinMax = true;
-    this.setTFType(TFType.PLDDT);
+    this.setTFType(StructureImportSettings.TFType.PLDDT);
   }
 
   @Override