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/** 024 * Created by Matt on 11/1/2015. 025 */ 026public class StructSite { 027 String id; 028 String details; 029 String pdbx_evidence_code; 030 String pdbx_auth_asym_id; 031 String pdbx_auth_comp_id; 032 String pdbx_auth_seq_id; 033 String pdbx_num_residues; 034 035 public String getId() { 036 return id; 037 } 038 039 public void setId(String id) { 040 this.id = id; 041 } 042 043 public String getDetails() { 044 return details; 045 } 046 047 public void setDetails(String details) { 048 this.details = details; 049 } 050 051 public String getPdbx_evidence_code() { 052 return pdbx_evidence_code; 053 } 054 055 public void setPdbx_evidence_code(String pdbx_evidence_code) { 056 this.pdbx_evidence_code = pdbx_evidence_code; 057 } 058 059 /** 060 * @return the pdbx_auth_asym_id 061 */ 062 public String getPdbx_auth_asym_id() { 063 return pdbx_auth_asym_id; 064 } 065 066 /** 067 * @param pdbx_auth_asym_id the pdbx_auth_asym_id to set 068 */ 069 public void setPdbx_auth_asym_id(String pdbx_auth_asym_id) { 070 this.pdbx_auth_asym_id = pdbx_auth_asym_id; 071 } 072 073 /** 074 * @return the pdbx_auth_comp_id 075 */ 076 public String getPdbx_auth_comp_id() { 077 return pdbx_auth_comp_id; 078 } 079 080 /** 081 * @param pdbx_auth_comp_id the pdbx_auth_comp_id to set 082 */ 083 public void setPdbx_auth_comp_id(String pdbx_auth_comp_id) { 084 this.pdbx_auth_comp_id = pdbx_auth_comp_id; 085 } 086 087 /** 088 * @return the pdbx_auth_seq_id 089 */ 090 public String getPdbx_auth_seq_id() { 091 return pdbx_auth_seq_id; 092 } 093 094 /** 095 * @param pdbx_auth_seq_id the pdbx_auth_seq_id to set 096 */ 097 public void setPdbx_auth_seq_id(String pdbx_auth_seq_id) { 098 this.pdbx_auth_seq_id = pdbx_auth_seq_id; 099 } 100 101 /** 102 * @return the pdbx_num_residues 103 */ 104 public String getPdbx_num_residues() { 105 return pdbx_num_residues; 106 } 107 108 /** 109 * @param pdbx_num_residues the pdbx_num_residues to set 110 */ 111 public void setPdbx_num_residues(String pdbx_num_residues) { 112 this.pdbx_num_residues = pdbx_num_residues; 113 } 114}