diff options
author | Herbert von Broeuschmeul <Herbert.Broeuschmeul@gmail.com> | 2011-01-30 22:47:39 +0100 |
---|---|---|
committer | Herbert von Broeuschmeul <Herbert.Broeuschmeul@gmail.com> | 2011-01-30 22:47:39 +0100 |
commit | 751719019ae20c11205fa8ac4ea35fbf79f890e3 (patch) | |
tree | 8571a348139cd2f51ca6966a9e2590fe44357f05 /src/org/broeuschmeul/android/gps/nmea | |
parent | afeee82cf52c30a9c6f507ed5783b59d3b7173da (diff) | |
download | BlueGPS-751719019ae20c11205fa8ac4ea35fbf79f890e3.zip BlueGPS-751719019ae20c11205fa8ac4ea35fbf79f890e3.tar.gz BlueGPS-751719019ae20c11205fa8ac4ea35fbf79f890e3.tar.bz2 |
add comment on the classes
Diffstat (limited to 'src/org/broeuschmeul/android/gps/nmea')
-rw-r--r-- | src/org/broeuschmeul/android/gps/nmea/util/NmeaParser.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/org/broeuschmeul/android/gps/nmea/util/NmeaParser.java b/src/org/broeuschmeul/android/gps/nmea/util/NmeaParser.java index 32f75a8..792a6ba 100644 --- a/src/org/broeuschmeul/android/gps/nmea/util/NmeaParser.java +++ b/src/org/broeuschmeul/android/gps/nmea/util/NmeaParser.java @@ -35,6 +35,14 @@ import android.text.TextUtils; import android.text.TextUtils.SimpleStringSplitter;
import android.util.Log;
+/**
+ * This class is used to parse NMEA sentences an generate the Android Locations when there is a new GPS FIX.
+ * It manage also the Mock Location Provider (enable/disable/fix & status notification)
+ * and can compute the the checksum of a NMEA sentence.
+ *
+ * @author Herbert von Broeuschmeul
+ *
+ */
public class NmeaParser {
private static final String LOG_TAG = "BlueGPS";
// private static final String LOG_TAG = NmeaParser.class.getSimpleName();
|