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

Contents of /navit/navit/android/src/de/oberoner/gpx2navit_txt/NavitTrkptHeader.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: 2709 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:35
45 * To change this template use File | Settings | File Templates.
46 */
47 public class NavitTrkptHeader
48 {
49
50 protected String NavitType;
51 protected String Label;
52 protected String Desc;
53 protected String Type;
54 protected String Length;
55 protected String Count;
56
57 public NavitTrkptHeader()
58 {
59 NavitType = "gpx_track";
60 Label = "";
61 Desc = "\"\"";
62 Type = "\"\"";
63 Length = "";
64 Count = "";
65 }
66
67 public String getNavitType()
68 {
69 return NavitType;
70 }
71
72 public void setNavitType(String navitType)
73 {
74 NavitType = navitType;
75 }
76
77 public String getLabel()
78 {
79 return Label;
80 }
81
82 public void setLabel(String label)
83 {
84 Label = label;
85 }
86
87 public String getDesc()
88 {
89 return Desc;
90 }
91
92 public void setDesc(String desc)
93 {
94 Desc = desc;
95 }
96
97 public String getType()
98 {
99 return Type;
100 }
101
102 public void setType(String type)
103 {
104 Type = type;
105 }
106
107 public String getLength()
108 {
109 return Length;
110 }
111
112 public void setLength(String length)
113 {
114 Length = length;
115 }
116
117 public String getCount()
118 {
119 return Count;
120 }
121
122 public void setCount(String count)
123 {
124 Count = count;
125 }
126 }

   
Visit the ZANavi Wiki