X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FAnnotation.java;h=b371bc3e0e1f53ed289acd092c5355645f3e1eeb;hb=c5677e9860106a821a3e6e0429b20ede7b9a732a;hp=6b22cade9cd4f262abe1b727795b1b49c45771b4;hpb=a7f8fa9c06d82efbbdbc6a0bf1054bb21610b353;p=jalview.git diff --git a/src/jalview/datamodel/Annotation.java b/src/jalview/datamodel/Annotation.java index 6b22cad..b371bc3 100755 --- a/src/jalview/datamodel/Annotation.java +++ b/src/jalview/datamodel/Annotation.java @@ -18,6 +18,9 @@ package jalview.datamodel; import java.awt.*; +import java.util.ArrayList; + +import fr.orsay.lri.varna.models.rna.RNA; /** * DOCUMENT ME! @@ -38,6 +41,8 @@ public class Annotation /** DOCUMENT ME!! */ public float value; + + // add visual cues here @@ -62,6 +67,7 @@ public class Annotation description = desc; secondaryStructure = ss; value = val; + } /** @@ -105,6 +111,7 @@ public class Annotation secondaryStructure = that.secondaryStructure; value = that.value; colour = that.colour; + } /** @@ -115,6 +122,10 @@ public class Annotation */ public Annotation(float val) { - this(null, null, ' ', val); + this(null, null, ' ', val,null); } + + + + }