]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.support.gis/src/main/java/org/argeo/slc/gis/model/FieldPosition.java
Move SLC GIS to sandbox
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.gis / src / main / java / org / argeo / slc / gis / model / FieldPosition.java
diff --git a/runtime/org.argeo.slc.support.gis/src/main/java/org/argeo/slc/gis/model/FieldPosition.java b/runtime/org.argeo.slc.support.gis/src/main/java/org/argeo/slc/gis/model/FieldPosition.java
deleted file mode 100644 (file)
index 5f2b35c..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *         http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.argeo.slc.gis.model;
-
-import java.util.Date;
-
-import com.vividsolutions.jts.geom.Point;
-
-public class FieldPosition {
-       private Point location;
-       private Date timestamp;
-       private String comment;
-
-       public FieldPosition() {
-       }
-
-       public FieldPosition(Point location) {
-               this.location = location;
-               this.timestamp = new Date();
-       }
-
-       public FieldPosition(Point location, Date timestamp, String comment) {
-               this.location = location;
-               this.timestamp = timestamp;
-               this.comment = comment;
-       }
-
-       public Point getLocation() {
-               return location;
-       }
-
-       public void setLocation(Point location) {
-               this.location = location;
-       }
-
-       public Date getTimestamp() {
-               return timestamp;
-       }
-
-       public void setTimestamp(Date timestamp) {
-               this.timestamp = timestamp;
-       }
-
-       public String getComment() {
-               return comment;
-       }
-
-       public void setComment(String comment) {
-               this.comment = comment;
-       }
-
-}