001/*
002 *                    PDB web 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 *
015 * Created on Jul 25, 2009
016 * Created by Andreas Prlic
017 *
018 */
019
020package org.biojava.nbio.structure.io.mmcif.model;
021
022public class AuditAuthor
023{
024        String name;
025        String pdbx_ordinal;
026        String address;
027        public String getName()
028        {
029                return name;
030        }
031        public void setName(String name)
032        {
033                this.name = name;
034        }
035        public String getPdbx_ordinal()
036        {
037                return pdbx_ordinal;
038        }
039        public void setPdbx_ordinal(String pdbx_ordinal)
040        {
041                this.pdbx_ordinal = pdbx_ordinal;
042        }
043        public String getAddress() {
044                return address;
045        }
046        public void setAddress(String address) {
047                this.address = address;
048        }
049
050
051}