Back to project page SurgePriceWidget.
The source code is released under:
MIT License
If you think the Android project SurgePriceWidget 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 me.mattlogan.surgepricewidget.api.event; //from ww w . jav a 2 s. c o m public class RetrievePricesRequestedEvent { public float startLatitude; public float startLongitude; public float endLatitude; public float endLongitude; public RetrievePricesRequestedEvent(float startLatitude, float startLongitude, float endLatitude, float endLongitude) { this.startLatitude = startLatitude; this.startLongitude = startLongitude; this.endLatitude = endLatitude; this.endLongitude = endLongitude; } }