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