Back to project page Flight-Computer-Android-Flightradar24.
The source code is released under:
GNU General Public License
If you think the Android project Flight-Computer-Android-Flightradar24 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.flightcomputer; /* ww w. ja v a2s .c o m*/ public interface PositionWriter { void emitProlog(); void emitPosition(long time, double latitude, double longitude, float altitude, int bearing, float groundSpeed); void emitEpilog(); int getLWCount(); void emitSessionlessPosition(long time, double latitude, double longitude, float altitude, int bearing, float groundSpeed); }