Back to project page JayJayLab-Android-Demo.
The source code is released under:
Apache License
If you think the Android project JayJayLab-Android-Demo 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.jayjaylab.androiddemo.app.greyhound.event; /* w w w . j a v a2s.c o m*/ import android.location.Location; import java.util.List; /** * Created by jongjoo on 1/10/15. */ public class OnGPXParsingCompleteEvent { List<Location> locationList; public OnGPXParsingCompleteEvent(List<Location> list) { locationList = list; } public List<Location> getLocationList() { return locationList; } public void setLocationList(List<Location> locationList) { this.locationList = locationList; } }