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 26, 2008 021 */ 022package org.biojava.nbio.structure.io.mmcif.model; 023 024/** a bean to contain the data of the _struct lines 025 * 026 * @author Andreas Prlic 027 * 028 */ 029public class Struct { 030 String entry_id; 031 String title; 032 String pdbx_descriptor; 033 String pdbx_model_details; 034 String pdbx_model_type_details; 035 String pdbx_CASP_flag; 036 037 @Override 038 public String toString(){ 039 return "entry_id:" +entry_id + " title:" + title + " pdbx_descriptor:" +pdbx_descriptor + " pdbx_model_details:"+pdbx_model_details; 040 } 041 042 public String getEntry_id() { 043 return entry_id; 044 } 045 public void setEntry_id(String entry_id) { 046 this.entry_id = entry_id; 047 } 048 public String getTitle() { 049 return title; 050 } 051 public void setTitle(String title) { 052 this.title = title; 053 } 054 public String getPdbx_descriptor() { 055 return pdbx_descriptor; 056 } 057 public void setPdbx_descriptor(String pdbx_descriptor) { 058 this.pdbx_descriptor = pdbx_descriptor; 059 } 060 public String getPdbx_model_details() { 061 return pdbx_model_details; 062 } 063 public void setPdbx_model_details(String pdbx_model_details) { 064 this.pdbx_model_details = pdbx_model_details; 065 } 066 067 public String getPdbx_model_type_details() { 068 return pdbx_model_type_details; 069 } 070 071 public void setPdbx_model_type_details(String pdbx_model_type_details) { 072 this.pdbx_model_type_details = pdbx_model_type_details; 073 } 074 075 public String getPdbx_CASP_flag() { 076 return pdbx_CASP_flag; 077 } 078 079 public void setPdbx_CASP_flag(String pdbx_CASP_flag) { 080 this.pdbx_CASP_flag = pdbx_CASP_flag; 081 } 082 083 084 085 086}