JAL-1641 added support for exporting sequence features and non auto-generated annotations
[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
new file mode 100644 (file)
index 0000000..2e5aac4
--- /dev/null
@@ -0,0 +1,54 @@
+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;
+  }
+}