/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package uk.org.aspellclark.fillerup;
import uk.org.aspellclark.fillerup.controller.FillupController;
import android.location.GpsStatus;
/**
*
* @author andy.aspell-clark
*/
public class MyGpsListener implements GpsStatus.Listener {
FillupController fuCntrlr;
public void onGpsStatusChanged(int arg0) {
throw new UnsupportedOperationException("Not supported yet.");
}
}
|