JAL-1645 source formatting and organise imports
[jalview.git] / src / jalview / json / binding / biojson / v1 / AlignmentPojo.java
index 9021a73..bd2ebe7 100644 (file)
@@ -1,6 +1,5 @@
 package jalview.json.binding.biojson.v1;
 
-
 import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.List;
@@ -8,16 +7,20 @@ import java.util.Map;
 
 import com.github.reinert.jjschema.Attributes;
 
-@Attributes(title="BioJSON", description="A specification for the representation and exchange of bioinformatics data")
+@Attributes(
+  title = "BioJSON",
+  description = "A specification for the representation and exchange of bioinformatics data")
 public class AlignmentPojo
 {
-  @Attributes(required = true, description = "Serial version identifier for <b>BioJSON</b> schema")
+  @Attributes(
+    required = true,
+    description = "Serial version identifier for <b>BioJSON</b> schema")
   private String svid = "1.0";
 
   @Attributes(
     required = true,
     minItems = 1,
-           description = "An array of Sequences which makes up the Alignment")
+    description = "An array of Sequences which makes up the Alignment")
   private List<SequencePojo> seqs = new ArrayList<SequencePojo>();
 
   @Attributes(
@@ -48,12 +51,13 @@ public class AlignmentPojo
         "Blosum62", "RNA Helices", "% Identity" },
     description = "The <a href=\"#colourScheme\">Colour Scheme</a> applied to the alignment")
   private String colourScheme;
-  
+
   @Attributes(
-       required = true, 
-       maxItems = 0, description = "AppSettings stores key=value pairs of custom application specific <br>"
-                                         + "settings (i.e visualisation settings, etc) for different applications<br>"
-                                         + "that consume or generate BioJSON")
+    required = true,
+    maxItems = 0,
+    description = "AppSettings stores key=value pairs of custom application specific <br>"
+            + "settings (i.e visualisation settings, etc) for different applications<br>"
+            + "that consume or generate BioJSON")
   Map<String, Object> appSettings = new HashMap<String, Object>();
 
   public AlignmentPojo()