Back to project page bike-friend.
The source code is released under:
GNU General Public License
If you think the Android project bike-friend 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.lemoulinstudio.bikefriend; // w w w. j ava 2 s .c om import java.io.InputStream; import java.io.IOException; import java.util.List; /** * * @author Vincent Cantin */ public interface StationParser<T extends Station> { // Note: this method should close the stream after it finished using it. public List<T> parse(InputStream in) throws IOException, ParsingException; }