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
024public class Symmetry extends AbstractBean {
025
026        String entry_id;
027        @CIFLabel(label="space_group_name_H-M")
028        String space_group_name_H_M;
029        @CIFLabel(label="pdbx_full_space_group_name_H-M")
030        String pdbx_full_space_group_name_H_M;
031        String cell_setting;
032        String Int_Tables_number;
033        String space_group_name_Hall;
034        public String getEntry_id() {
035                return entry_id;
036        }
037        public void setEntry_id(String entry_id) {
038                this.entry_id = entry_id;
039        }
040        public String getSpace_group_name_H_M() {
041                return space_group_name_H_M;
042        }
043        public void setSpace_group_name_H_M(String space_group_name_H_M) {
044                this.space_group_name_H_M = space_group_name_H_M;
045        }
046        public String getPdbx_full_space_group_name_H_M() {
047                return pdbx_full_space_group_name_H_M;
048        }
049        public void setPdbx_full_space_group_name_H_M(
050                        String pdbx_full_space_group_name_H_M) {
051                this.pdbx_full_space_group_name_H_M = pdbx_full_space_group_name_H_M;
052        }
053        public String getCell_setting() {
054                return cell_setting;
055        }
056        public void setCell_setting(String cell_setting) {
057                this.cell_setting = cell_setting;
058        }
059        public String getInt_Tables_number() {
060                return Int_Tables_number;
061        }
062        public void setInt_Tables_number(String int_Tables_number) {
063                Int_Tables_number = int_Tables_number;
064        }
065        public String getSpace_group_name_Hall() {
066                return space_group_name_Hall;
067        }
068        public void setSpace_group_name_Hall(String space_group_name_Hall) {
069                this.space_group_name_Hall = space_group_name_Hall;
070        }
071}