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 at Jun 1, 2008 021 */ 022package org.biojava.nbio.structure.io.mmcif.model; 023 024/** Contains the data for _struct_asym 025 * 026 * @author Andreas Prlic 027 * @since 1.7 028 * 029 */ 030public class StructAsym extends AbstractBean{ 031 String id; 032 String pdbx_blank_PDB_chainid_flag; 033 String pdbx_modified; 034 String entity_id; 035 String details; 036 public String getId() { 037 return id; 038 } 039 public void setId(String id) { 040 this.id = id; 041 } 042 public String getPdbx_blank_PDB_chainid_flag() { 043 return pdbx_blank_PDB_chainid_flag; 044 } 045 public void setPdbx_blank_PDB_chainid_flag(String pdbx_blank_PDB_chainid_flag) { 046 this.pdbx_blank_PDB_chainid_flag = pdbx_blank_PDB_chainid_flag; 047 } 048 public String getPdbx_modified() { 049 return pdbx_modified; 050 } 051 public void setPdbx_modified(String pdbx_modified) { 052 this.pdbx_modified = pdbx_modified; 053 } 054 public String getEntity_id() { 055 return entity_id; 056 } 057 public void setEntity_id(String entity_id) { 058 this.entity_id = entity_id; 059 } 060 public String getDetails() { 061 return details; 062 } 063 public void setDetails(String details) { 064 this.details = details; 065 } 066 067 068}