001
002/*
003 *                    BioJava development code
004 *
005 * This code may be freely distributed and modified under the
006 * terms of the GNU Lesser General Public Licence.  This should
007 * be distributed with the code.  If you do not have a copy,
008 * see:
009 *
010 *      http://www.gnu.org/copyleft/lesser.html
011 *
012 * Copyright for this code is held jointly by the individual
013 * authors.  These should be listed in @author doc comments.
014 *
015 * For more information on the BioJava project and its aims,
016 * or to join the biojava-l mailing list, visit the home page
017 * at:
018 *
019 *      http://www.biojava.org/
020 *
021 * Created by andreas on 10/12/15.
022 */
023
024package org.biojava.nbio.structure.io.mmcif.model;
025
026import java.io.Serializable;
027
028public class DatabasePdbrevRecord implements Serializable {
029
030
031        private static final long serialVersionUID = 1L;
032
033        String rev_num;
034        String type;
035        String details;
036
037        public String getRev_num() {
038                return rev_num;
039        }
040
041        public void setRev_num(String rev_num) {
042                this.rev_num = rev_num;
043        }
044
045        public String getType() {
046                return type;
047        }
048
049        public void setType(String type) {
050                this.type = type;
051        }
052
053        public String getDetails() {
054                return details;
055        }
056
057        public void setDetails(String details) {
058                this.details = details;
059        }
060
061        @Override
062        public String toString() {
063                return "DatabasePdbrevRecord{" +
064                                "rev_num='" + rev_num + '\'' +
065                                ", type='" + type + '\'' +
066                                ", details='" + details + '\'' +
067                                '}';
068        }
069}