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 */
021package org.biojava.nbio.structure.io.mmcif.model;
022
023
024import javax.xml.bind.annotation.XmlAccessType;
025import javax.xml.bind.annotation.XmlAccessorType;
026import java.io.Serializable;
027
028
029
030@XmlAccessorType(XmlAccessType.PUBLIC_MEMBER)
031public class PdbxStructAssembly implements Serializable{
032
033        /**
034         *
035         */
036        private static final long serialVersionUID = 3104504686693887219L;
037
038        String id;
039        String details;
040        String method_details;
041        String oligomeric_details;
042        String oligomeric_count ;
043        public String getId() {
044                return id;
045        }
046        public void setId(String id) {
047                this.id = id;
048        }
049        public String getDetails() {
050                return details;
051        }
052        public void setDetails(String details) {
053                this.details = details;
054        }
055        public String getMethod_details() {
056                return method_details;
057        }
058        public void setMethod_details(String method_details) {
059                this.method_details = method_details;
060        }
061        public String getOligomeric_details() {
062                return oligomeric_details;
063        }
064        public void setOligomeric_details(String oligomeric_details) {
065                this.oligomeric_details = oligomeric_details;
066        }
067        public String getOligomeric_count() {
068                return oligomeric_count;
069        }
070        public void setOligomeric_count(String oligomeric_count) {
071                this.oligomeric_count = oligomeric_count;
072        }
073        @Override
074        public String toString() {
075                return "PdbxStructAssembly [id=" + id + ", details=" + details
076                                + ", method_details=" + method_details
077                                + ", oligomeric_details=" + oligomeric_details
078                                + ", oligomeric_count=" + oligomeric_count + "]";
079        }
080
081
082
083
084
085}