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 May 31, 2008 021 */ 022package org.biojava.nbio.structure.io.mmcif.model; 023 024public class Exptl extends AbstractBean{ 025 String entry_id; 026 String method; 027 String crystals_number; 028 String absorpt_coefficient_mu; 029 String absorpt_correction_T_max; 030 String absorpt_correction_T_min ; 031 String absorpt_correction_type ; 032 String absorpt_process_details ; 033 String details; 034 String method_details; 035 036 public String getEntry_id() { 037 return entry_id; 038 } 039 public void setEntry_id(String entry_id) { 040 this.entry_id = entry_id; 041 } 042 public String getMethod() { 043 return method; 044 } 045 public void setMethod(String method) { 046 this.method = method; 047 } 048 public String getCrystals_number() { 049 return crystals_number; 050 } 051 public void setCrystals_number(String crystals_number) { 052 this.crystals_number = crystals_number; 053 } 054 public String getAbsorpt_coefficient_mu() { 055 return absorpt_coefficient_mu; 056 } 057 public void setAbsorpt_coefficient_mu(String absorpt_coefficient_mu) { 058 this.absorpt_coefficient_mu = absorpt_coefficient_mu; 059 } 060 public String getAbsorpt_correction_T_max() { 061 return absorpt_correction_T_max; 062 } 063 public void setAbsorpt_correction_T_max(String absorpt_correction_T_max) { 064 this.absorpt_correction_T_max = absorpt_correction_T_max; 065 } 066 public String getAbsorpt_correction_T_min() { 067 return absorpt_correction_T_min; 068 } 069 public void setAbsorpt_correction_T_min(String absorpt_correction_T_min) { 070 this.absorpt_correction_T_min = absorpt_correction_T_min; 071 } 072 public String getAbsorpt_correction_type() { 073 return absorpt_correction_type; 074 } 075 public void setAbsorpt_correction_type(String absorpt_correction_type) { 076 this.absorpt_correction_type = absorpt_correction_type; 077 } 078 public String getAbsorpt_process_details() { 079 return absorpt_process_details; 080 } 081 public void setAbsorpt_process_details(String absorpt_process_details) { 082 this.absorpt_process_details = absorpt_process_details; 083 } 084 public String getDetails() { 085 return details; 086 } 087 public void setDetails(String details) { 088 this.details = details; 089 } 090 public String getMethod_details() { 091 return method_details; 092 } 093 public void setMethod_details(String method_details) { 094 this.method_details = method_details; 095 } 096 097 098}