⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pdbatom.java

📁 化学图形处理软件
💻 JAVA
字号:
/* $RCSfile$ * $Author: egonw $ * $Date: 2007-01-04 18:46:10 +0100 (Thu, 04 Jan 2007) $ * $Revision: 7636 $ * * Copyright (C) 2005-2007  Egon Willighagen <egonw@users.sf.net> *  * Contact: cdk-devel@lists.sourceforge.net *  * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * All we ask is that proper credit is given for our work, which includes * - but is not limited to - adding the above copyright notice to the beginning * of your source code files, and to any copyright notice that you may distribute * with programs based on this work. *  * 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 Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * */package org.openscience.cdk.protein.data;import javax.vecmath.Point3d;import org.openscience.cdk.Atom;import org.openscience.cdk.interfaces.IElement;import org.openscience.cdk.interfaces.IPDBAtom;/** * Represents the idea of an atom as used in PDB files. It contains extra fields * normally associated with atoms in such files. * * @cdk.module data * * @see  Atom */public class PDBAtom extends Atom implements Cloneable, IPDBAtom {    /**     * Determines if a de-serialized object is compatible with this class.     *     * This value must only be changed if and only if the new version     * of this class is imcompatible with the old version. See Sun docs     * for <a href="http://java.sun.com/products/jdk/1.1/docs/guide/serialization/spec/version.doc.html">details</a>.	 */	private static final long serialVersionUID = 7670650135045832543L;	private String record;    private double tempFactor;    private String resName;    private String iCode;    private double occupancy;    private String name;    private String chainID;    private String altLoc;    private String segID;    private int serial;    private String resSeq;    private boolean oxt;    private boolean hetAtom;    /**	 * Constructs an IPDBAtom from a Element.	 * 	 * @param element IElement to copy information from	 */	public PDBAtom(IElement element) {		super(element);        initValues();	}    /**	 * Constructs an IPDBAtom from a String containing an element symbol.     *      * @param symbol  The String describing the element for the PDBAtom     */    public PDBAtom(String symbol) {        super(symbol);        initValues();    }    /**     * Constructs an IPDBAtom from an Element and a Point3d.     *     * @param   elementSymbol   The symbol of the atom     * @param   point3d         The 3D coordinates of the atom     */    public PDBAtom(String symbol, Point3d coordinate) {        super(symbol, coordinate);        initValues();    }            private void initValues() {        record = null;        tempFactor = -1.0;        resName = null;        iCode = null;        occupancy = -1.0;        name = null;        chainID = null;        altLoc = null;        segID = null;        serial = 0;        resSeq = null;                oxt = false;        hetAtom = false;    }    /**     * get one entire line from the PDB entry file which describe the IPDBAtom.      * It consists of 80 columns.      *      * @return a String with all information     */    public String getRecord() {        return record;    }    /**     * set one entire line from the PDB entry file which describe the IPDBAtom.      * It consists of 80 columns. 	 * 	 * @param newRecord A String with all information	 */    public void setRecord(String newRecord) {        record = newRecord;    }    /**     * get the Temperature factor of this atom.     *      * @return the Temperature factor of this atom     */    public double getTempFactor() {        return tempFactor;    }    /**     * set the Temperature factor of this atom.     *      * @param newTempFactor  the Temperature factor of this atom     */    public void setTempFactor(double newTempFactor) {        tempFactor = newTempFactor;    }    /**     * set the Residue name of this atom.     *      * @param newResName  the Residue name of this atom     */    public void setResName(String newResName) {        resName = newResName;    }        /**     * get the Residue name of this atom.     *      * @return the Residue name of this atom     */    public String getResName() {        return resName;    }    /**     * set the Code for insertion of residues of this atom.     *      * @param newICode  the Code for insertion of residues of this atom     */    public void setICode(String newICode) {        iCode = newICode;    }    /**     * get Code for insertion of residues of this atom.     *      * @return the Code for insertion of residues of this atom     */    public String getICode() {        return iCode;    }    /**     * set the Atom name of this atom.     *      * @param newName  the Atom name of this atom     */    public void setName(String newName) {        name = newName;    }    /**     * get the Atom name of this atom.     *      * @return the Atom name of this atom     */    public String getName() {        return name;    }    /**     * set the Chain identifier of this atom.     *      * @param newChainID  the Chain identifier of this atom     */    public void setChainID(String newChainID) {        chainID = newChainID;    }    /**     * get the Chain identifier of this atom.     *      * @return the Chain identifier of this atom     */    public String getChainID() {        return chainID;    }    /**     * set the Alternate location indicator of this atom.     *      * @param newAltLoc  the Alternate location indicator of this atom     */    public void setAltLoc(String newAltLoc) {        altLoc = newAltLoc;    }    /**     * get the Alternate location indicator of this atom.     *      * @return the Alternate location indicator of this atom     */    public String getAltLoc() {        return altLoc;    }    /**     * set the Segment identifier, left-justified of this atom.     *      * @param newSegID  the Segment identifier, left-justified of this atom     */    public void setSegID(String newSegID) {        segID = newSegID;    }    /**     * get the Segment identifier, left-justified of this atom.     *      * @return the Segment identifier, left-justified of this atom     */    public String getSegID() {        return segID;    }    /**     * set the Atom serial number of this atom.     *      * @param newSerial  the Atom serial number of this atom     */    public void setSerial(int newSerial) {        serial = newSerial;    }    /**     * get the Atom serial number of this atom.     *      * @return the Atom serial number of this atom     */    public int getSerial() {        return serial;    }    /**     * set the Residue sequence number of this atom.     *      * @param newResSeq  the Residue sequence number of this atom     */    public void setResSeq(String newResSeq) {        resSeq = newResSeq;    }    /**     * get the Residue sequence number of this atom.     *      * @return the Residue sequence number of this atom     */    public String getResSeq() {        return resSeq;    }        public void setOxt(boolean newOxt) {        oxt = newOxt;    }        public boolean getOxt() {        return oxt;    }        public void setHetAtom(boolean newHetAtom) {        hetAtom = newHetAtom;    }        public boolean getHetAtom() {        return hetAtom;    }    /**     * set the Occupancy of this atom.     *      * @param newOccupancy  the Occupancy of this atom     */    public void setOccupancy(double newOccupancy) {        occupancy = newOccupancy;    }    /**     * get the Occupancy of this atom.     *      * @return the Occupancy of this atom     */    public double getOccupancy() {        return occupancy;    }        /**     * Returns a one line string representation of this Atom.     * Methods is conform RFC #9.     *     * @return  The string representation of this Atom     */    public String toString() {        StringBuffer description = new StringBuffer();        description.append("PDBAtom(");        description.append(this.hashCode()).append(", ");        description.append("altLoc=").append(getAltLoc()).append(", ");        description.append("chainID=").append(getChainID()).append(", ");        description.append("iCode=").append(getICode()).append(", ");        description.append("name=").append(getName()).append(", ");        description.append("resName=").append(getResName()).append(", ");        description.append("resSeq=").append(getResSeq()).append(", ");        description.append("segID=").append(getSegID()).append(", ");        description.append("serial=").append(getSerial()).append(", ");        description.append("tempFactor=").append(getTempFactor()).append(", ");        description.append("oxt=").append(getOxt()).append(", ");        description.append("hetatm=").append(getHetAtom()).append(", ");        description.append(super.toString());        description.append(")");        return description.toString();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -