JAL-2976 patch NPE when trying to open Uniprot FTS
[jalview.git] / src / jalview / json / binding / biojson / v1 / AlignmentAnnotationPojo.java
index 7e729f9..673b09d 100644 (file)
@@ -30,12 +30,12 @@ public class AlignmentAnnotationPojo
 
   @Attributes(
     required = false,
-    description = "Label for the Alignment Annotation")
+    description = "Label for the alignment annotation")
   private String label;
 
   @Attributes(
     required = false,
-    description = "Description for the Alignment Annotation")
+    description = "Description for the alignment annotation")
   private String description;
 
   @Attributes(required = false)
@@ -43,8 +43,9 @@ public class AlignmentAnnotationPojo
 
   @Attributes(
     required = false,
-    enums = { "0", "1", "2" },
-    description = "Determines the rendered for the annotation<br><ul><li>0 - No graph</li><li>1 - Bar Graph</li><li>2 - Line graph</li></ul>")
+    enums =
+    { "0", "1", "2" },
+    description = "Determines the rendering for the annotation<br><ul><li>0 - No graph</li><li>1 - Bar Graph</li><li>2 - Line graph</li></ul>")
   private int graphType;
 
   @Attributes(
@@ -60,7 +61,9 @@ public class AlignmentAnnotationPojo
   @Attributes(required = false, description = "Score of the annotation")
   private double score;
 
-  @Attributes(required = false, description = "Annotation generation source")
+  @Attributes(
+    required = false,
+    description = "The annotation generation source")
   private String calcId;
 
   public String getLabel()