Formatted source
[jalview.git] / src / MCview / Atom.java
index b3a8fdb..0aaf040 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
-import java.util.*;\r
+\r
 import java.awt.*;\r
 \r
-public class Atom {\r
-  double x;\r
-  double y;\r
-  double z;\r
-  int number;\r
-  String name;\r
-  String resName;\r
-  int resNumber;\r
-  int type;\r
-  Color color;\r
-  String chain;\r
+import java.util.*;\r
 \r
-  public Atom(StringTokenizer str) {\r
-    this.number  = (new Integer(str.nextToken())).intValue();\r
-    this.name    = str.nextToken();\r
-    this.resName = str.nextToken();\r
 \r
-    String tmpstr = new String();\r
+public class Atom {\r
+    double x;\r
+    double y;\r
+    double z;\r
+    int number;\r
+    String name;\r
+    String resName;\r
+    int resNumber;\r
+    int type;\r
+    Color color;\r
+    String chain;\r
 \r
-    try {\r
-      tmpstr = str.nextToken();\r
+    public Atom(StringTokenizer str) {\r
+        this.number = (new Integer(str.nextToken())).intValue();\r
+        this.name = str.nextToken();\r
+        this.resName = str.nextToken();\r
 \r
-      this.resNumber = (new Integer(tmpstr).intValue());\r
-      this.chain     = "A";\r
-      this.color     = Color.green;\r
+        String tmpstr = new String();\r
 \r
-    } catch(NumberFormatException e) {\r
-      this.chain = tmpstr;\r
+        try {\r
+            tmpstr = str.nextToken();\r
 \r
-      if (tmpstr.equals("A")) {\r
-        this.color = new Color((float)Math.random(),(float)Math.random(),(float)Math.random());\r
-      } else {\r
-        this.color = Color.red;\r
-      }\r
-      this.resNumber = (new Integer(str.nextToken()).intValue());\r
-    }\r
+            this.resNumber = (new Integer(tmpstr).intValue());\r
+            this.chain = "A";\r
+            this.color = Color.green;\r
+        } catch (NumberFormatException e) {\r
+            this.chain = tmpstr;\r
 \r
-    this.x = (double)(new Double(str.nextToken()).floatValue());\r
-    this.y = (double)(new Double(str.nextToken()).floatValue());\r
-    this.z = (double)(new Double(str.nextToken()).floatValue());\r
+            if (tmpstr.equals("A")) {\r
+                this.color = new Color((float) Math.random(),\r
+                        (float) Math.random(), (float) Math.random());\r
+            } else {\r
+                this.color = Color.red;\r
+            }\r
 \r
-  }\r
+            this.resNumber = (new Integer(str.nextToken()).intValue());\r
+        }\r
 \r
-  public void setColor(Color col) {\r
-    this.color = col;\r
-  }\r
+        this.x = (double) (new Double(str.nextToken()).floatValue());\r
+        this.y = (double) (new Double(str.nextToken()).floatValue());\r
+        this.z = (double) (new Double(str.nextToken()).floatValue());\r
+    }\r
 \r
+    public void setColor(Color col) {\r
+        this.color = col;\r
+    }\r
 }\r