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 Aug 12, 2013
021 * Author: Andreas Prlic
022 */
023
024package org.biojava.nbio.structure.io.mmcif.model;
025
026/**
027 * PDBX_ENTITY_SRC_SYN records the details about each chemically
028 * synthesized molecule (entity) in the asymmetric unit.
029 * @author Andreas Prlic
030 *
031 */
032public class EntitySrcSyn {
033        String  details;
034        String  entity_id;
035        String  ncbi_taxonomy_id;
036        String  organism_common_name;
037        String  organism_scientific;
038        String  strain;
039        public String getDetails() {
040                return details;
041        }
042        public void setDetails(String details) {
043                this.details = details;
044        }
045        public String getEntity_id() {
046                return entity_id;
047        }
048        public void setEntity_id(String entity_id) {
049                this.entity_id = entity_id;
050        }
051        public String getNcbi_taxonomy_id() {
052                return ncbi_taxonomy_id;
053        }
054        public void setNcbi_taxonomy_id(String ncbi_taxonomy_id) {
055                this.ncbi_taxonomy_id = ncbi_taxonomy_id;
056        }
057        public String getOrganism_common_name() {
058                return organism_common_name;
059        }
060        public void setOrganism_common_name(String organism_common_name) {
061                this.organism_common_name = organism_common_name;
062        }
063        public String getOrganism_scientific() {
064                return organism_scientific;
065        }
066        public void setOrganism_scientific(String organism_scientific) {
067                this.organism_scientific = organism_scientific;
068        }
069        public String getStrain() {
070                return strain;
071        }
072        public void setStrain(String strain) {
073                this.strain = strain;
074        }
075}