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 024/** A class to containt the _struct_ref field data 025 * 026 * @author Andreas Prlic 027 * 028 */ 029public class StructRef extends AbstractBean { 030 String id; 031 String db_name; 032 String db_code; 033 String entity_id; 034 String pdbx_db_accession; 035 String pdbx_align_begin; 036 String pdbx_seq_one_letter_code; 037 String biol_id; 038 public String getBiol_id() { 039 return biol_id; 040 } 041 public void setBiol_id(String biol_id) { 042 this.biol_id = biol_id; 043 } 044 public String getId() { 045 return id; 046 } 047 public void setId(String id) { 048 this.id = id; 049 } 050 public String getDb_name() { 051 return db_name; 052 } 053 public void setDb_name(String db_name) { 054 this.db_name = db_name; 055 } 056 public String getDb_code() { 057 return db_code; 058 } 059 public void setDb_code(String db_code) { 060 this.db_code = db_code; 061 } 062 public String getEntity_id() { 063 return entity_id; 064 } 065 public void setEntity_id(String entity_id) { 066 this.entity_id = entity_id; 067 } 068 public String getPdbx_db_accession() { 069 return pdbx_db_accession; 070 } 071 public void setPdbx_db_accession(String pdbx_db_accession) { 072 this.pdbx_db_accession = pdbx_db_accession; 073 } 074 public String getPdbx_align_begin() { 075 return pdbx_align_begin; 076 } 077 public void setPdbx_align_begin(String pdbx_align_begin) { 078 this.pdbx_align_begin = pdbx_align_begin; 079 } 080 public String getPdbx_seq_one_letter_code() { 081 return pdbx_seq_one_letter_code; 082 } 083 public void setPdbx_seq_one_letter_code(String pdbx_seq_one_letter_code) { 084 this.pdbx_seq_one_letter_code = pdbx_seq_one_letter_code; 085 } 086 087 088 089}