Formatted source
[jalview.git] / src / MCview / Residue.java
index 998e388..b01d982 100755 (executable)
 * along with this program; if not, write to the Free Software\r
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
 */\r
-\r
 package MCview;\r
 \r
 import java.util.*;\r
 \r
 \r
 public class Residue {\r
-  Vector atoms = new Vector();\r
-\r
-  int number;\r
-  int count;\r
-  int seqnumber;\r
-\r
-  public Residue(Vector atoms, int number, int count) {\r
-    this.atoms  = atoms;\r
-    this.number = number;\r
-    this.count  = count;\r
-  }\r
+    Vector atoms = new Vector();\r
+    int number;\r
+    int count;\r
+    int seqnumber;\r
+\r
+    public Residue(Vector atoms, int number, int count) {\r
+        this.atoms = atoms;\r
+        this.number = number;\r
+        this.count = count;\r
+    }\r
 \r
-  public myAtom findAtom(String name) {\r
+    public myAtom findAtom(String name) {\r
+        for (int i = 0; i < atoms.size(); i++) {\r
+            if (((myAtom) atoms.elementAt(i)).name.equals(name)) {\r
+                return (myAtom) atoms.elementAt(i);\r
+            }\r
+        }\r
 \r
-    for (int i = 0; i < atoms.size(); i++) {\r
-      if (((myAtom)atoms.elementAt(i)).name.equals(name)) {\r
-        return (myAtom)atoms.elementAt(i);\r
-      }\r
+        return null;\r
     }\r
-    return null;\r
-  }\r
 }\r