From 48ee19170c35980fb7e4a54b1305ae5e3f5ba7cf Mon Sep 17 00:00:00 2001 From: amwaterhouse Date: Wed, 16 Nov 2005 16:39:08 +0000 Subject: [PATCH] Not used --- src/MCview/myAtom.java | 56 ------------------------------------------------ 1 file changed, 56 deletions(-) delete mode 100755 src/MCview/myAtom.java diff --git a/src/MCview/myAtom.java b/src/MCview/myAtom.java deleted file mode 100755 index 5eccbdf..0000000 --- a/src/MCview/myAtom.java +++ /dev/null @@ -1,56 +0,0 @@ -/* -* Jalview - A Sequence Alignment Editor and Viewer -* Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle -* -* This program is free software; you can redistribute it and/or -* modify it under the terms of the GNU General Public License -* as published by the Free Software Foundation; either version 2 -* of the License, or (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program; if not, write to the Free Software -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -*/ -package MCview; - -import java.awt.*; - -import java.util.*; - - -public class myAtom { - float x; - float y; - float z; - public int number; - public String name; - public String resName; - public int resNumber; - public int type; - public Color color = Color.lightGray; - public String chain; - public boolean isSelected = false; - - public myAtom(StringTokenizer str) { - this.number = (new Integer(str.nextToken())).intValue(); - this.name = str.nextToken(); - this.resName = str.nextToken(); - - this.chain = str.nextToken(); - - this.resNumber = (new Integer(str.nextToken()).intValue()); - - this.x = (float) (new Float(str.nextToken()).floatValue()); - this.y = (float) (new Float(str.nextToken()).floatValue()); - this.z = (float) (new Float(str.nextToken()).floatValue()); - } - - public void setColor(Color col) { - this.color = col; - } -} -- 1.7.10.2