Back to project page slidingdebugmenu.
The source code is released under:
Apache License
If you think the Android project slidingdebugmenu 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 co.lemonlabs.android.slidingdebugmenu.modules.events; //from w ww .j a va 2s . c o m import android.location.Location; /** * Created by balysv on 14/01/14. * www.lemonlabs.co */ public class LocationEvent { public final Location location; public LocationEvent(Location location) { this.location = location; } }