/layers-store/src/main/java/org/ala/layers/dto/GridClass.java
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 ***************************************************************************/ 15package org.ala.layers.dto; 16 17/** 18 * 19 * @author Adam 20 */ 21public class GridClass { 22 23 Integer id; 24 String name; 25 Double area_km; 26 String bbox; 27 Integer minShapeIdx; 28 Integer maxShapeIdx; 29 30 public void setId(Integer id) { 31 this.id = id; 32 } 33 34 public Integer getId() { 35 return id; 36 } 37 38 public void setName(String name) { 39 this.name = name; 40 } 41 42 public String getName() { 43 return name; 44 } 45 46 public void setArea_km(Double area_km) { 47 this.area_km = area_km; 48 } 49 50 public Double getArea_km() { 51 return area_km; 52 } 53 54 public void setBbox(String bbox) { 55 this.bbox = bbox; 56 } 57 58 public String getBbox() { 59 return bbox; 60 } 61 62 public void setMinShapeIdx(Integer minShapeIdx) { 63 this.minShapeIdx = minShapeIdx; 64 } 65 66 public Integer getMinShapeIdx() { 67 return minShapeIdx; 68 } 69 70 public void setMaxShapeIdx(Integer maxShapeIdx) { 71 this.maxShapeIdx = maxShapeIdx; 72 } 73 74 public Integer getMaxShapeIdx() { 75 return maxShapeIdx; 76 } 77}