merge from develop
[jalview.git] / src / jalview / json / binding / v1 / AnnotationPojo.java
diff --git a/src/jalview/json/binding/v1/AnnotationPojo.java b/src/jalview/json/binding/v1/AnnotationPojo.java
deleted file mode 100644 (file)
index 41eae82..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-package jalview.json.binding.v1;
-
-
-public class AnnotationPojo
-{
-  private String displayCharacter = "";
-
-  private String description;
-
-  private char secondaryStructure;
-
-  private float value;
-
-
-  public String getDisplayCharacter()
-  {
-    return displayCharacter;
-  }
-
-  public void setDisplayCharacter(String displayCharacter)
-  {
-    this.displayCharacter = displayCharacter;
-  }
-
-  public String getDescription()
-  {
-    return description;
-  }
-
-  public void setDescription(String description)
-  {
-    this.description = description;
-  }
-
-  public char getSecondaryStructure()
-  {
-    return secondaryStructure;
-  }
-
-  public void setSecondaryStructure(char secondaryStructure)
-  {
-    this.secondaryStructure = secondaryStructure;
-  }
-
-  public float getValue()
-  {
-    return value;
-  }
-
-  public void setValue(float value)
-  {
-    this.value = value;
-  }
-
-}