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.domain.pdp;
022
023public class PDPDistanceMatrix {
024        int[][] dist;
025        int nclose;
026        int[] iclose ;
027        int[] jclose ;
028
029        public PDPDistanceMatrix(){
030
031        }
032
033        public int[][] getDist() {
034                return dist;
035        }
036
037        public void setDist(int[][] dist) {
038                this.dist = dist;
039        }
040
041        public int getNclose() {
042                return nclose;
043        }
044
045        public void setNclose(int nclose) {
046                this.nclose = nclose;
047        }
048
049        public int[] getIclose() {
050                return iclose;
051        }
052
053        public void setIclose(int[] iclose) {
054                this.iclose = iclose;
055        }
056
057        public int[] getJclose() {
058                return jclose;
059        }
060
061        public void setJclose(int[] jclose) {
062                this.jclose = jclose;
063        }
064
065
066
067
068}