Back to project page carfinder.
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.
/* 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; } }