/layers-store/src/main/java/org/ala/layers/dto/Tabulation.java

http://alageospatialportal.googlecode.com/ · 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. ***************************************************************************/
  15. package org.ala.layers.dto;
  16. /**
  17. *
  18. * @author Adam
  19. */
  20. public class Tabulation {
  21. String fid1;
  22. String pid1;
  23. String name1;
  24. String fid2;
  25. String pid2;
  26. String name2;
  27. Double area;
  28. String geometry;
  29. int occurrences;
  30. int species;
  31. public void setFid1(String fid1) {
  32. this.fid1 = fid1;
  33. }
  34. public String getFid1() {
  35. return fid1;
  36. }
  37. public void setPid1(String pid1) {
  38. this.pid1 = pid1;
  39. }
  40. public String getPid1() {
  41. return pid1;
  42. }
  43. public void setName1(String name1) {
  44. this.name1 = name1;
  45. }
  46. public String getName1() {
  47. return name1;
  48. }
  49. public void setFid2(String fid2) {
  50. this.fid2 = fid2;
  51. }
  52. public String getFid2() {
  53. return fid2;
  54. }
  55. public void setPid2(String pid2) {
  56. this.pid2 = pid2;
  57. }
  58. public String getPid2() {
  59. return pid2;
  60. }
  61. public void setName2(String name2) {
  62. this.name2 = name2;
  63. }
  64. public String getName2() {
  65. return name2;
  66. }
  67. public void setArea(Double area) {
  68. this.area = area;
  69. }
  70. public Double getArea() {
  71. return area;
  72. }
  73. public void setGeometry(String geometry) {
  74. this.geometry = geometry;
  75. }
  76. public String getGeometry() {
  77. return geometry;
  78. }
  79. public void setOccurrences(int occurrences) {
  80. this.occurrences = occurrences;
  81. }
  82. public int getOccurrences() {
  83. return occurrences;
  84. }
  85. public void setSpecies(int species) {
  86. this.species = species;
  87. }
  88. public int getSpecies() {
  89. return species;
  90. }
  91. }