org.dinopolis.gpstool.gpsinput
Interface GPSRawDataListener

All Known Implementing Classes:
GPSActivityDialog

public interface GPSRawDataListener

All classes implementing this interface are interpreting data from a GPSDevice (serial gps-receivier, file containing gps data, ...) and provide this information in a uniform way. So an NMEA-processor interprets NMEA sentences, while a Garmin-Processor understands the garmin protocol.

Version:
$Revision: 1.5 $
Author:
Christof Dallermassl

Method Summary
 void gpsRawDataReceived(char[] raw_data, int offset, int length)
          Informs a GPSRawDataListener about received raw data from a gps device.
 

Method Detail

gpsRawDataReceived

public void gpsRawDataReceived(char[] raw_data,
                               int offset,
                               int length)
Informs a GPSRawDataListener about received raw data from a gps device.

Parameters:
raw_data - the raw data received from the gps device.