Merge branch 'develop' into features/JAL-1705_ensembl
[jalview.git] / src / jalview / json / binding / v1 / SequenceFeaturesPojo.java
diff --git a/src/jalview/json/binding/v1/SequenceFeaturesPojo.java b/src/jalview/json/binding/v1/SequenceFeaturesPojo.java
deleted file mode 100644 (file)
index f55be46..0000000
+++ /dev/null
@@ -1,144 +0,0 @@
-package jalview.json.binding.v1;
-
-import java.util.Hashtable;
-import java.util.Vector;
-
-public class SequenceFeaturesPojo
-{
-  private String svid = "1.0";
-
-  private int xstart;
-
-  private int xend;
-
-  private String sequenceRef;
-
-  private String type;
-
-  private Float score;
-
-  private String description;
-
-  private Hashtable otherDetails;
-
-  private String fillColor;
-
-  private String featureGroup;
-
-  private Vector<String> links;
-
-  public SequenceFeaturesPojo()
-  {
-  }
-
-  public SequenceFeaturesPojo(String sequenceRef)
-  {
-    this.sequenceRef = sequenceRef;
-  }
-
-  public String getFillColor()
-  {
-    return "#" + fillColor;
-  }
-
-  public void setFillColor(String fillColor)
-  {
-    this.fillColor = fillColor;
-  }
-
-  public int getXstart()
-  {
-    return xstart;
-  }
-
-  public void setXstart(int xstart)
-  {
-    this.xstart = xstart;
-  }
-
-  public int getXend()
-  {
-    return xend;
-  }
-
-  public void setXend(int xend)
-  {
-    this.xend = xend;
-  }
-
-  public String getType()
-  {
-    return type;
-  }
-
-  public void setType(String type)
-  {
-    this.type = type;
-  }
-
-  public Float getScore()
-  {
-    return score;
-  }
-
-  public void setScore(Float score)
-  {
-    this.score = score;
-  }
-
-  public String getDescription()
-  {
-    return description;
-  }
-
-  public void setDescription(String description)
-  {
-    this.description = description;
-  }
-
-  public Hashtable getOtherDetails()
-  {
-    return otherDetails;
-  }
-
-  public void setOtherDetails(Hashtable otherDetails)
-  {
-    this.otherDetails = otherDetails;
-  }
-
-  public Vector<String> getLinks()
-  {
-    return links;
-  }
-
-  public void setLinks(Vector<String> links)
-  {
-    this.links = links;
-  }
-
-  public String getFeatureGroup()
-  {
-    return featureGroup;
-  }
-
-  public void setFeatureGroup(String featureGroup)
-  {
-    this.featureGroup = featureGroup;
-  }
-
-  public String getSequenceRef()
-  {
-    return sequenceRef;
-  }
-
-  public void setSequenceRef(String sequenceRef)
-  {
-    this.sequenceRef = sequenceRef;
-  }
-
-  public String getSvid()
-  {
-    return svid;
-  }
-
-}