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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 28 - (show annotations) (download)
Sun Jun 17 08:12:47 2012 UTC (11 years, 9 months ago) by zoff99
File size: 2721 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: 16.10.11
44 * Time: 12:53
45 * To change this template use File | Settings | File Templates.
46 */
47 public class NavitWptRec
48 {
49
50 protected String type;
51 protected String label;
52 protected String description;
53 protected String gc_type;
54 protected String lat;
55 protected String lon;
56
57 public NavitWptRec()
58 {
59 type = "gpx_point";
60 label = "";
61 description = "";
62 gc_type = "";
63 lat = "";
64 lon = "";
65 }
66
67 public String getType()
68 {
69 return type;
70 }
71
72 public void setType(String type)
73 {
74 this.type = type;
75 }
76
77 public String getLabel()
78 {
79 return label;
80 }
81
82 public void setLabel(String label)
83 {
84 this.label = label;
85 }
86
87 public String getDescription()
88 {
89 return description;
90 }
91
92 public void setDescription(String description)
93 {
94 this.description = description;
95 }
96
97 public String getGc_type()
98 {
99 return gc_type;
100 }
101
102 public void setGc_type(String gc_type)
103 {
104 this.gc_type = gc_type;
105 }
106
107 public String getLat()
108 {
109 return lat;
110 }
111
112 public void setLat(String lat)
113 {
114 this.lat = lat;
115 }
116
117 public String getLon()
118 {
119 return lon;
120 }
121
122 public void setLon(String lon)
123 {
124 this.lon = lon;
125 }
126 }

   
Visit the ZANavi Wiki