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

http://alageospatialportal.googlecode.com/ · Java · 77 lines · 45 code · 14 blank · 18 comment · 0 complexity · 5c2f36ddfabcf298a90875f247ce987d 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 GridClass {
  21. Integer id;
  22. String name;
  23. Double area_km;
  24. String bbox;
  25. Integer minShapeIdx;
  26. Integer maxShapeIdx;
  27. public void setId(Integer id) {
  28. this.id = id;
  29. }
  30. public Integer getId() {
  31. return id;
  32. }
  33. public void setName(String name) {
  34. this.name = name;
  35. }
  36. public String getName() {
  37. return name;
  38. }
  39. public void setArea_km(Double area_km) {
  40. this.area_km = area_km;
  41. }
  42. public Double getArea_km() {
  43. return area_km;
  44. }
  45. public void setBbox(String bbox) {
  46. this.bbox = bbox;
  47. }
  48. public String getBbox() {
  49. return bbox;
  50. }
  51. public void setMinShapeIdx(Integer minShapeIdx) {
  52. this.minShapeIdx = minShapeIdx;
  53. }
  54. public Integer getMinShapeIdx() {
  55. return minShapeIdx;
  56. }
  57. public void setMaxShapeIdx(Integer maxShapeIdx) {
  58. this.maxShapeIdx = maxShapeIdx;
  59. }
  60. public Integer getMaxShapeIdx() {
  61. return maxShapeIdx;
  62. }
  63. }