Back to project page Android-JSONCompare.
The source code is released under:
Apache License
If you think the Android project Android-JSONCompare 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.devspark.jsoncompare; //ww w .j a va2 s . co m import java.io.InputStream; import java.util.List; import java.util.Map; /** * * @author e.shishkin * */ public interface JsonHandler { /** * Getting name of JSON handler. * * @return name */ String getName(); /** * Parse simple JSON. * * @param inputStream * @return */ List<Map<String, Object>> parsePublicTimeline(InputStream inputStream); }