Ignore:
Timestamp:
2016-08-27T17:23:05+02:00 (8 years ago)
Author:
Don-vip
Message:

add more non-regression NMEA unit tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/NmeaReader.java

    r10632 r10906  
    2929 */
    3030public class NmeaReader {
    31 
    32     /** Handler for the different types that NMEA speaks. */
    33     public enum NMEA_TYPE {
    34 
    35         /** RMC = recommended minimum sentence C. */
    36         GPRMC("$GPRMC"),
    37         /** GPS positions. */
    38         GPGGA("$GPGGA"),
    39         /** SA = satellites active. */
    40         GPGSA("$GPGSA"),
    41         /** Course over ground and ground speed */
    42         GPVTG("$GPVTG");
    43 
    44         private final String type;
    45 
    46         NMEA_TYPE(String type) {
    47             this.type = type;
    48         }
    49 
    50         public String getType() {
    51             return this.type;
    52         }
    53     }
    5431
    5532    // GPVTG
Note: See TracChangeset for help on using the changeset viewer.