Back to project page android-nextbus.
The source code is released under:
MIT License
If you think the Android project android-nextbus 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.andrei.nextbus.library.objects; /*from w w w . java 2 s . co m*/ import java.util.ArrayList; import java.util.List; import java.util.Map; public class MultiStopPredictions implements MapInitializable { public List <MultiStopDirection> directions = new ArrayList <MultiStopDirection> (); public Map <String,String> attribs; public MultiStopPredictions (){ } public void init (Map <String,String> attribs){ this.attribs = attribs; } }