Not used
authoramwaterhouse <Andrew Waterhouse>
Wed, 16 Nov 2005 16:39:08 +0000 (16:39 +0000)
committeramwaterhouse <Andrew Waterhouse>
Wed, 16 Nov 2005 16:39:08 +0000 (16:39 +0000)
src/MCview/myAtom.java [deleted file]

diff --git a/src/MCview/myAtom.java b/src/MCview/myAtom.java
deleted file mode 100755 (executable)
index 5eccbdf..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-/*\r
-* Jalview - A Sequence Alignment Editor and Viewer\r
-* Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
-*\r
-* This program is free software; you can redistribute it and/or\r
-* modify it under the terms of the GNU General Public License\r
-* as published by the Free Software Foundation; either version 2\r
-* of the License, or (at your option) any later version.\r
-*\r
-* This program is distributed in the hope that it will be useful,\r
-* but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-* GNU General Public License for more details.\r
-*\r
-* You should have received a copy of the GNU General Public License\r
-* 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
-package MCview;\r
-\r
-import java.awt.*;\r
-\r
-import java.util.*;\r
-\r
-\r
-public class myAtom {\r
-    float x;\r
-    float y;\r
-    float z;\r
-    public int number;\r
-    public String name;\r
-    public String resName;\r
-    public int resNumber;\r
-    public int type;\r
-    public Color color = Color.lightGray;\r
-    public String chain;\r
-    public boolean isSelected = false;\r
-\r
-    public myAtom(StringTokenizer str) {\r
-        this.number = (new Integer(str.nextToken())).intValue();\r
-        this.name = str.nextToken();\r
-        this.resName = str.nextToken();\r
-\r
-        this.chain = str.nextToken();\r
-\r
-        this.resNumber = (new Integer(str.nextToken()).intValue());\r
-\r
-        this.x = (float) (new Float(str.nextToken()).floatValue());\r
-        this.y = (float) (new Float(str.nextToken()).floatValue());\r
-        this.z = (float) (new Float(str.nextToken()).floatValue());\r
-    }\r
-\r
-    public void setColor(Color col) {\r
-        this.color = col;\r
-    }\r
-}\r