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 Jun 1, 2008
021 */
022package org.biojava.nbio.structure.io.mmcif.model;
023
024
025/**
026 * Container for _entity_poly records
027 *
028 *
029 * @since 5.0
030 * @author Jose Duarte
031 */
032public class EntityPoly extends AbstractBean{
033        String entity_id;
034        String type;
035        String nstd_chirality;
036        String nstd_linkage;
037        String nstd_monomer;
038        String type_details;
039        String pdbx_seq_one_letter_code;
040        String pdbx_seq_one_letter_code_can;
041        String pdbx_strand_id;
042        String pdbx_target_identifier;
043        public String getEntity_id() {
044                return entity_id;
045        }
046        public void setEntity_id(String entity_id) {
047                this.entity_id = entity_id;
048        }
049        /**
050         * @return the type
051         */
052        public String getType() {
053                return type;
054        }
055        /**
056         * @param type the type to set
057         */
058        public void setType(String type) {
059                this.type = type;
060        }
061        /**
062         * @return the nstd_chirality
063         */
064        public String getNstd_chirality() {
065                return nstd_chirality;
066        }
067        /**
068         * @param nstd_chirality the nstd_chirality to set
069         */
070        public void setNstd_chirality(String nstd_chirality) {
071                this.nstd_chirality = nstd_chirality;
072        }
073        /**
074         * @return the nstd_linkage
075         */
076        public String getNstd_linkage() {
077                return nstd_linkage;
078        }
079        /**
080         * @param nstd_linkage the nstd_linkage to set
081         */
082        public void setNstd_linkage(String nstd_linkage) {
083                this.nstd_linkage = nstd_linkage;
084        }
085        /**
086         * @return the nstd_monomer
087         */
088        public String getNstd_monomer() {
089                return nstd_monomer;
090        }
091        /**
092         * @param nstd_monomer the nstd_monomer to set
093         */
094        public void setNstd_monomer(String nstd_monomer) {
095                this.nstd_monomer = nstd_monomer;
096        }
097        /**
098         * @return the type_details
099         */
100        public String getType_details() {
101                return type_details;
102        }
103        /**
104         * @param type_details the type_details to set
105         */
106        public void setType_details(String type_details) {
107                this.type_details = type_details;
108        }
109        /**
110         * @return the pdbx_seq_one_letter_code
111         */
112        public String getPdbx_seq_one_letter_code() {
113                return pdbx_seq_one_letter_code;
114        }
115        /**
116         * @param pdbx_seq_one_letter_code the pdbx_seq_one_letter_code to set
117         */
118        public void setPdbx_seq_one_letter_code(String pdbx_seq_one_letter_code) {
119                this.pdbx_seq_one_letter_code = pdbx_seq_one_letter_code;
120        }
121        /**
122         * @return the pdbx_seq_one_letter_code_can
123         */
124        public String getPdbx_seq_one_letter_code_can() {
125                return pdbx_seq_one_letter_code_can;
126        }
127        /**
128         * @param pdbx_seq_one_letter_code_can the pdbx_seq_one_letter_code_can to set
129         */
130        public void setPdbx_seq_one_letter_code_can(String pdbx_seq_one_letter_code_can) {
131                this.pdbx_seq_one_letter_code_can = pdbx_seq_one_letter_code_can;
132        }
133        /**
134         * @return the pdbx_strand_id
135         */
136        public String getPdbx_strand_id() {
137                return pdbx_strand_id;
138        }
139        /**
140         * @param pdbx_strand_id the pdbx_strand_id to set
141         */
142        public void setPdbx_strand_id(String pdbx_strand_id) {
143                this.pdbx_strand_id = pdbx_strand_id;
144        }
145        public String getPdbx_target_identifier() {
146                return pdbx_target_identifier;
147        }
148        public void setPdbx_target_identifier(String pdbx_target_identifier) {
149                this.pdbx_target_identifier = pdbx_target_identifier;
150        }
151
152}