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 */ 021package org.biojava.nbio.structure.io.mmcif.model; 022 023public class Cell extends AbstractBean { 024 025 String entry_id; 026 String length_a; 027 String length_b; 028 String length_c; 029 String angle_alpha; 030 String angle_beta; 031 String angle_gamma; 032 String Z_PDB; 033 String pdbx_unique_axis; 034 035 // some PDB entries like 1aac have the extra esd fields 036 String length_a_esd; 037 String length_b_esd; 038 String length_c_esd; 039 String angle_alpha_esd; 040 String angle_beta_esd; 041 String angle_gamma_esd; 042 043 String volume; 044 045 public String getEntry_id() { 046 return entry_id; 047 } 048 public void setEntry_id(String entry_id) { 049 this.entry_id = entry_id; 050 } 051 public String getLength_a() { 052 return length_a; 053 } 054 public void setLength_a(String length_a) { 055 this.length_a = length_a; 056 } 057 public String getLength_b() { 058 return length_b; 059 } 060 public void setLength_b(String length_b) { 061 this.length_b = length_b; 062 } 063 public String getLength_c() { 064 return length_c; 065 } 066 public void setLength_c(String length_c) { 067 this.length_c = length_c; 068 } 069 public String getAngle_alpha() { 070 return angle_alpha; 071 } 072 public void setAngle_alpha(String angle_alpha) { 073 this.angle_alpha = angle_alpha; 074 } 075 public String getAngle_beta() { 076 return angle_beta; 077 } 078 public void setAngle_beta(String angle_beta) { 079 this.angle_beta = angle_beta; 080 } 081 public String getAngle_gamma() { 082 return angle_gamma; 083 } 084 public void setAngle_gamma(String angle_gamma) { 085 this.angle_gamma = angle_gamma; 086 } 087 public String getZ_PDB() { 088 return Z_PDB; 089 } 090 public void setZ_PDB(String z_PDB) { 091 Z_PDB = z_PDB; 092 } 093 public String getPdbx_unique_axis() { 094 return pdbx_unique_axis; 095 } 096 public void setPdbx_unique_axis(String pdbx_unique_axis) { 097 this.pdbx_unique_axis = pdbx_unique_axis; 098 } 099 public String getLength_a_esd() { 100 return length_a_esd; 101 } 102 public void setLength_a_esd(String length_a_esd) { 103 this.length_a_esd = length_a_esd; 104 } 105 public String getLength_b_esd() { 106 return length_b_esd; 107 } 108 public void setLength_b_esd(String length_b_esd) { 109 this.length_b_esd = length_b_esd; 110 } 111 public String getLength_c_esd() { 112 return length_c_esd; 113 } 114 public void setLength_c_esd(String length_c_esd) { 115 this.length_c_esd = length_c_esd; 116 } 117 public String getAngle_alpha_esd() { 118 return angle_alpha_esd; 119 } 120 public void setAngle_alpha_esd(String angle_alpha_esd) { 121 this.angle_alpha_esd = angle_alpha_esd; 122 } 123 public String getAngle_beta_esd() { 124 return angle_beta_esd; 125 } 126 public void setAngle_beta_esd(String angle_beta_esd) { 127 this.angle_beta_esd = angle_beta_esd; 128 } 129 public String getAngle_gamma_esd() { 130 return angle_gamma_esd; 131 } 132 public void setAngle_gamma_esd(String angle_gamma_esd) { 133 this.angle_gamma_esd = angle_gamma_esd; 134 } 135 public String getVolume() { 136 return volume; 137 } 138 public void setVolume(String volume) { 139 this.volume = volume; 140 } 141 142 143}