/[zanavi_public1]/navit/navit/android/src/de/oberoner/gpx2navit_txt/NavitTrkptRec.java
ZANavi

Contents of /navit/navit/android/src/de/oberoner/gpx2navit_txt/NavitTrkptRec.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 28 - (show annotations) (download)
Sun Jun 17 08:12:47 2012 UTC (11 years, 10 months ago) by zoff99
File size: 2048 byte(s)
lots of new stuff and fixes
1 /**
2 * ZANavi, Zoff Android Navigation system.
3 * Copyright (C) 2012 Zoff <zoff@zoff.cc>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * version 2 as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 */
19
20 /**
21 * Copyright (C) 2011 Dipl.-Ing.(FH) Thomas Schindel, Bad Elster
22 *
23 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public License
25 * version 2 as published by the Free Software Foundation.
26 *
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU General Public License for more details.
31 *
32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the
34 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
35 * Boston, MA 02110-1301, USA.
36 */
37
38 package de.oberoner.gpx2navit_txt;
39
40 /**
41 * Created by IntelliJ IDEA.
42 * User: Dipl.-Ing.(FH) Thomas Schindel, Bad Elster
43 * Date: 15.10.11
44 * Time: 16:38
45 * To change this template use File | Settings | File Templates.
46 */
47 public class NavitTrkptRec
48 {
49
50 protected String lat;
51 protected String lon;
52
53 public NavitTrkptRec()
54 {
55 lat = "";
56 lon = "";
57 }
58
59 public String getLat()
60 {
61 return lat;
62 }
63
64 public void setLat(String lat)
65 {
66 this.lat = lat;
67 }
68
69 public String getLon()
70 {
71 return lon;
72 }
73
74 public void setLon(String lon)
75 {
76 this.lon = lon;
77 }
78 }

   
Visit the ZANavi Wiki