public class AlignmentAnnotationPojo
{
+ private String svid = "1.0";
+
private String label;
private String description;
{
this.annotations = annotations;
}
+
+ public String getSvid()
+ {
+ return svid;
+ }
+
}
public class AlignmentPojo
{
+ private String svid = "1.0";
+
private List<SequencePojo> seqs = new ArrayList<SequencePojo>();
private List<AlignmentAnnotationPojo> alignAnnotation = new ArrayList<AlignmentAnnotationPojo>();
this.seqFeatures = seqFeatures;
}
-
+ public String getSvid()
+ {
+ return svid;
+ }
}
{
this.value = value;
}
+
}
public class JalviewSettingsPojo
{
+ private String svid = "1.0";
+
private String globalColorScheme = "none";
private String jalviewVersion;
}
}
+
+ public String getSvid()
+ {
+ return svid;
+ }
+
}
public class SequenceFeaturesPojo
{
+ private String svid = "1.0";
private int xstart;
{
this.sequenceRef = sequenceRef;
}
+
+ public String getSvid()
+ {
+ return svid;
+ }
+
}
public class SequenceGrpPojo
{
+ private String svid = "1.0";
+
private String colourScheme;
private String groupName;
{
this.seqsHash = seqsHash;
}
+
+ public String getSvid()
+ {
+ return svid;
+ }
+
}
public class SequencePojo
{
+ private String svid = "1.0";
+
private String seq;
private String name;
private int end;
- // private ArrayList<SequenceFeaturesPojo> features = new
- // ArrayList<SequenceFeaturesPojo>();
public SequencePojo()
{
this.end = end;
}
- // public ArrayList<SequenceFeaturesPojo> getFeatures()
- // {
- // return features;
- // }
- //
- // public void setFeatures(ArrayList<SequenceFeaturesPojo> features)
- // {
- // this.features = features;
- // }
-
public int getOrder()
{
return order;
{
this.order = order;
}
+
+ public String getSvid()
+ {
+ return svid;
+ }
+
}