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

📄 ipdbatom.java

📁 化学图形处理软件
💻 JAVA
字号:
/* $RCSfile$ * $Author: egonw $ * $Date: 2006-08-14 21:51:36 +0200 (Mon, 14 Aug 2006) $ * $Revision: 6785 $ * *  Copyright (C) 2006-2007  Miguel Rojas <miguel.rojas@uni-koeln.de> * * 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. * * 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.interfaces;/** * A PDBAtom is a subclass of a Atom which is supposed to store * additional informations about the Atom * * @cdk.module  interfaces * * @author      Miguel Rojas <miguel.rojas@uni-koeln.de> * @cdk.created 2006-11-20  * * @cdk.keyword pdbpolymer */public interface IPDBAtom extends IAtom {    /**     * 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();    	/**     * 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);    /**     * get the Temperature factor of this atom.     *      * @return the Temperature factor of this atom     */    public double getTempFactor();    /**     * set the Temperature factor of this atom.     *      * @param newTempFactor  the Temperature factor of this atom     */    public void setTempFactor(double newTempFactor);    /**     * get the Residue name of this atom.     *      * @return the Residue name of this atom     */    public String getResName();    /**     * set the Residue name of this atom.     *      * @param newResName  the Residue name of this atom     */    public void setResName(String newResName);        /**     * get Code for insertion of residues of this atom.     *      * @return the Code for insertion of residues of this atom     */    public String getICode();        /**     * 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);        /**     * get the Atom name of this atom.     *      * @return the Atom name of this atom     */    public String getName();    /**     * set the Atom name of this atom.     *      * @param newName  the Atom name of this atom     */    public void setName(String newName);        /**     * get the Chain identifier of this atom.     *      * @return the Chain identifier of this atom     */    public String getChainID();    /**     * set the Chain identifier of this atom.     *      * @param newChainID  the Chain identifier of this atom     */    public void setChainID(String newChainID);        /**     * get the Alternate location indicator of this atom.     *      * @return the Alternate location indicator of this atom     */    public String getAltLoc();    /**     * set the Alternate location indicator of this atom.     *      * @param newAltLoc  the Alternate location indicator of this atom     */    public void setAltLoc(String newAltLoc);        /**     * get the Segment identifier, left-justified of this atom.     *      * @return the Segment identifier, left-justified of this atom     */    public String getSegID();    /**     * set the Segment identifier, left-justified of this atom.     *      * @param newSegID  the Segment identifier, left-justified of this atom     */    public void setSegID(String newSegID);        /**     * get the Atom serial number of this atom.     *      * @return the Atom serial number of this atom     */    public int getSerial();    /**     * set the Atom serial number of this atom.     *      * @param newSerial  the Atom serial number of this atom     */    public void setSerial(int newSerial);        /**     * get the Residue sequence number of this atom.     *      * @return the Residue sequence number of this atom     */    public String getResSeq();    /**     * set the Residue sequence number of this atom.     *      * @param newResSeq  the Residue sequence number of this atom     */    public void setResSeq(String newResSeq);            public boolean getOxt();    public void setOxt(boolean newOxt);        public boolean getHetAtom();    public void setHetAtom(boolean newHetAtom);        /**     * get the Occupancy of this atom.     *      * @return the Occupancy of this atom     */    public double getOccupancy();    /**     * set the Occupancy of this atom.     *      * @param newOccupancy  the Occupancy of this atom     */    public void setOccupancy(double newOccupancy);    	}

⌨️ 快捷键说明

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