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 023import javax.xml.bind.annotation.XmlAccessType; 024import javax.xml.bind.annotation.XmlAccessorType; 025import java.io.Serializable; 026 027@XmlAccessorType(XmlAccessType.PUBLIC_MEMBER) 028public class PdbxStructAssemblyGen implements Serializable{ 029 /** 030 * 031 */ 032 private static final long serialVersionUID = 6739568389242514332L; 033 String assembly_id; 034 String oper_expression; 035 String asym_id_list; 036 037 038 public String getAssembly_id() { 039 return assembly_id; 040 } 041 public void setAssembly_id(String assembly_id) { 042 this.assembly_id = assembly_id; 043 } 044 public String getOper_expression() { 045 return oper_expression; 046 } 047 public void setOper_expression(String oper_expression) { 048 this.oper_expression = oper_expression; 049 } 050 public String getAsym_id_list() { 051 return asym_id_list; 052 } 053 public void setAsym_id_list(String asym_id_list) { 054 this.asym_id_list = asym_id_list; 055 } 056 @Override 057 public String toString() { 058 return "PdbxStructAssemblyGen [assembly_id=" + assembly_id 059 + ", oper_expression=" + oper_expression + ", asym_id_list=" 060 + asym_id_list + "]"; 061 } 062 063 064 065 066 067}