Android Open Source - carfinder Car Position






From Project

Back to project page carfinder.

License

The source code is released under:

GNU General Public License

If you think the Android project carfinder listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package be.ndusart.carfinder;
// w  ww .  j  a v a 2  s .  c o  m
public class CarPosition {
  boolean by_bluetooth;
  double latitude;
  double longitude;
  
  public CarPosition() {
    by_bluetooth = false;
  }
}




Java Source Code List

android.UnusedStub.java
be.ndusart.carfinder.CarDetecter.java
be.ndusart.carfinder.CarPosition.java
be.ndusart.carfinder.MainActivity.java