/layers-store/src/main/java/org/ala/layers/dto/Tabulation.java
Java | 113 lines | 73 code | 22 blank | 18 comment | 0 complexity | d8779f8ae3b760858a456ba76651020a MD5 | raw file
1/************************************************************************** 2 * Copyright (C) 2010 Atlas of Living Australia 3 * All Rights Reserved. 4 * 5 * The contents of this file are subject to the Mozilla Public 6 * License Version 1.1 (the "License"); you may not use this file 7 * except in compliance with the License. You may obtain a copy of 8 * the License at http://www.mozilla.org/MPL/ 9 * 10 * Software distributed under the License is distributed on an "AS 11 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or 12 * implied. See the License for the specific language governing 13 * rights and limitations under the License. 14 ***************************************************************************/ 15package org.ala.layers.dto; 16 17/** 18 * 19 * @author Adam 20 */ 21public class Tabulation { 22 23 String fid1; 24 String pid1; 25 String name1; 26 String fid2; 27 String pid2; 28 String name2; 29 Double area; 30 String geometry; 31 int occurrences; 32 int species; 33 34 public void setFid1(String fid1) { 35 this.fid1 = fid1; 36 } 37 38 public String getFid1() { 39 return fid1; 40 } 41 42 public void setPid1(String pid1) { 43 this.pid1 = pid1; 44 } 45 46 public String getPid1() { 47 return pid1; 48 } 49 50 public void setName1(String name1) { 51 this.name1 = name1; 52 } 53 54 public String getName1() { 55 return name1; 56 } 57 58 public void setFid2(String fid2) { 59 this.fid2 = fid2; 60 } 61 62 public String getFid2() { 63 return fid2; 64 } 65 66 public void setPid2(String pid2) { 67 this.pid2 = pid2; 68 } 69 70 public String getPid2() { 71 return pid2; 72 } 73 74 public void setName2(String name2) { 75 this.name2 = name2; 76 } 77 78 public String getName2() { 79 return name2; 80 } 81 82 public void setArea(Double area) { 83 this.area = area; 84 } 85 86 public Double getArea() { 87 return area; 88 } 89 90 public void setGeometry(String geometry) { 91 this.geometry = geometry; 92 } 93 94 public String getGeometry() { 95 return geometry; 96 } 97 public void setOccurrences(int occurrences) { 98 this.occurrences = occurrences; 99 } 100 101 public int getOccurrences() { 102 return occurrences; 103 } 104 105 public void setSpecies(int species) { 106 this.species = species; 107 } 108 109 public int getSpecies() { 110 return species; 111 } 112 113}