JAL-1517 source formatting
[jalview.git] / src / jalview / datamodel / SecondaryStructureAnnotation.java
index 8c249cc..13f31d8 100644 (file)
@@ -24,28 +24,29 @@ import fr.orsay.lri.varna.models.rna.RNA;
 
 public class SecondaryStructureAnnotation extends AlignmentAnnotation
 {
-       
 
-       private static RNA _rna = null;
-         public SecondaryStructureAnnotation (RNA rna) 
-         {
-                super("Secondary Structure", "Un truc trop cool",getAnnotation(rna));
-                
-           
-           _rna = rna;
-         }
-       
-         public RNA getRNA()
-        {
-                 return _rna;
-        }
-         public static Annotation[] getAnnotation(RNA rna) 
-         {
-                 Annotation[] ann =  new Annotation[rna.getSize()];
-                        for(int i=0;i<ann.length;i++)
-                        {      
-                                ann[i] = new Annotation(_rna.getStructDBN(true), "", ' ', 0f);; 
-                        }
-                 return ann;
-         }
+  private static RNA _rna = null;
+
+  public SecondaryStructureAnnotation(RNA rna)
+  {
+    super("Secondary Structure", "Un truc trop cool", getAnnotation(rna));
+
+    _rna = rna;
+  }
+
+  public RNA getRNA()
+  {
+    return _rna;
+  }
+
+  public static Annotation[] getAnnotation(RNA rna)
+  {
+    Annotation[] ann = new Annotation[rna.getSize()];
+    for (int i = 0; i < ann.length; i++)
+    {
+      ann[i] = new Annotation(_rna.getStructDBN(true), "", ' ', 0f);
+      ;
+    }
+    return ann;
+  }
 }