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 on 7 Feb 2013 021 * Created by Andreas Prlic 022 * 023 * @since 3.0.2 024 */ 025package org.biojava.nbio.structure.io.mmcif.model; 026 027/* 028_pdbx_chem_comp_descriptor.comp_id 029_pdbx_chem_comp_descriptor.type 030_pdbx_chem_comp_descriptor.program 031_pdbx_chem_comp_descriptor.program_version 032_pdbx_chem_comp_descriptor.descriptor 033 */ 034public class PdbxChemCompDescriptor { 035 String comp_id; 036 String type; 037 String program; 038 String program_version; 039 String identifier; 040 041 public String getComp_id() { 042 return comp_id; 043 } 044 public void setComp_id(String comp_id) { 045 this.comp_id = comp_id; 046 } 047 public String getType() { 048 return type; 049 } 050 public void setType(String type) { 051 this.type = type; 052 } 053 public String getProgram() { 054 return program; 055 } 056 public void setProgram(String program) { 057 this.program = program; 058 } 059 public String getProgram_version() { 060 return program_version; 061 } 062 public void setProgram_version(String program_version) { 063 this.program_version = program_version; 064 } 065 public String getIdentifier() { 066 return identifier; 067 } 068 public void setIdentifier(String identifier) { 069 this.identifier = identifier; 070 } 071}