JAL-1645 source formatting and organise imports
[jalview.git] / src / jalview / json / binding / biojson / v1 / SequenceFeaturesPojo.java
index 64fee65..6729139 100644 (file)
@@ -7,10 +7,14 @@ import com.github.reinert.jjschema.Attributes;
 
 public class SequenceFeaturesPojo
 {
-  @Attributes(required = true, description = "Start residue position for the sequence feature")
+  @Attributes(
+    required = true,
+    description = "Start residue position for the sequence feature")
   private int xStart;
 
-  @Attributes(required = true, description = "End residue position for the sequence feature")
+  @Attributes(
+    required = true,
+    description = "End residue position for the sequence feature")
   private int xEnd;
 
   @Attributes(
@@ -20,7 +24,9 @@ public class SequenceFeaturesPojo
     description = "Reference to the sequence in the alignment<br> (more like a foreign key)")
   private String sequenceRef;
 
-  @Attributes(required = true, description = "The name or type of the SequenceFeature")
+  @Attributes(
+    required = true,
+    description = "The name or type of the SequenceFeature")
   private String type;
 
   @Attributes(required = false, description = "Score")
@@ -28,8 +34,10 @@ public class SequenceFeaturesPojo
 
   @Attributes(required = false, description = "Description for the feature")
   private String description;
-  
-  @Attributes(required = false, description = "Additional metadata for the feature")
+
+  @Attributes(
+    required = false,
+    description = "Additional metadata for the feature")
   private Map<String, Object> otherDetails;
 
   @Attributes(required = false, description = "Fill colour")
@@ -38,7 +46,9 @@ public class SequenceFeaturesPojo
   @Attributes(required = true, description = "Feature group")
   private String featureGroup;
 
-  @Attributes(required = false, description = "URL links associated to the feature")
+  @Attributes(
+    required = false,
+    description = "URL links associated to the feature")
   private Vector<String> links;
 
   public SequenceFeaturesPojo()