X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=runtime%2Forg.argeo.slc.support.gis%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fgis%2Fmodel%2FFieldPosition.java;fp=runtime%2Forg.argeo.slc.support.gis%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fgis%2Fmodel%2FFieldPosition.java;h=0000000000000000000000000000000000000000;hb=2b5515c174921dc5d5c9159aa4b2c1e02f04c1e1;hp=5f2b35cb43c2981556c9917de94fdee6eada00c7;hpb=eef4888d3214ab92c5df3768d08c3e26269cc429;p=gpl%2Fargeo-slc.git 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 index 5f2b35cb4..000000000 --- a/runtime/org.argeo.slc.support.gis/src/main/java/org/argeo/slc/gis/model/FieldPosition.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (C) 2010 Mathieu Baudier - * - * 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; - } - -}