X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FAnnotation.java;h=dae81ef4940663b226b9d91ab30c074f42cfb425;hb=a4780f236ded1ae07824254bca59b2aa0ea539ba;hp=e3588b039fe9ac90d09e1e87d54d85b769954491;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/jalview/datamodel/Annotation.java b/src/jalview/datamodel/Annotation.java index e3588b0..dae81ef 100755 --- a/src/jalview/datamodel/Annotation.java +++ b/src/jalview/datamodel/Annotation.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -47,7 +47,7 @@ public class Annotation /** Score for the position - used in histograms, line graphs and for shading */ public float value; - + /** Colour for position */ public Color colour; @@ -69,7 +69,7 @@ public class Annotation description = desc; secondaryStructure = ss; value = val; - + } /** @@ -124,15 +124,15 @@ public class Annotation */ public Annotation(float val) { - this(null, null, ' ', val,null); + this(null, null, ' ', val, null); } /** * human readable representation of an annotation row element. - * + * * Format is 'display Char','secondary Structure * Char',"description",score,[colourstring] - * + * * fields may be missing if they are null, whitespace, or equivalent to * Float.NaN */