001/* 002 * BioJava development code 003 * 004 * This code may be freely distributed and modified under the 005 * terms of the GNU Lesser General Public Licence. This should 006 * be distributed with the code. If you do not have a copy, 007 * see: 008 * 009 * http://www.gnu.org/copyleft/lesser.html 010 * 011 * Copyright for this code is held jointly by the individual 012 * authors. These should be listed in @author doc comments. 013 * 014 * For more information on the BioJava project and its aims, 015 * or to join the biojava-l mailing list, visit the home page 016 * at: 017 * 018 * http://www.biojava.org/ 019 * 020 * created at Apr 27, 2008 021 */ 022package org.biojava.nbio.structure.io.mmcif.model; 023 024public class DatabasePDBrev { 025 String date; 026 String date_original; 027 String status; 028 String replaces; 029 String mod_type; 030 String num; 031 032 @Override 033 public String toString(){ 034 StringBuffer buf = new StringBuffer(); 035 buf.append("DatabasePDBrev "); 036 buf.append("mod_type :"); 037 buf.append(mod_type); 038 buf.append(" "); 039 buf.append(this.getDate()); 040 buf.append( " "); 041 buf.append( this.getDate_original()); 042 043 return buf.toString(); 044 } 045 public String getNum() { 046 return num; 047 } 048 public void setNum(String num) { 049 this.num = num; 050 } 051 public String getDate() { 052 return date; 053 } 054 public void setDate(String date) { 055 this.date = date; 056 } 057 public String getDate_original() { 058 return date_original; 059 } 060 public void setDate_original(String date_original) { 061 this.date_original = date_original; 062 } 063 public String getStatus() { 064 return status; 065 } 066 public void setStatus(String status) { 067 this.status = status; 068 } 069 public String getReplaces() { 070 return replaces; 071 } 072 public void setReplaces(String replaces) { 073 this.replaces = replaces; 074 } 075 public String getMod_type() { 076 return mod_type; 077 } 078 public void setMod_type(String mod_type) { 079 this.mod_type = mod_type; 080 } 081 082 083}