Back to project page jsonxmlcompare.
The source code is released under:
Apache License
If you think the Android project jsonxmlcompare 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.davidtpate.speedtest; //from w ww. j a v a 2s .c om import java.io.InputStream; import java.util.List; import java.util.Map; import com.davidtpate.speedtest.model.PostParent; public interface TestParser { String getName(); int getResource(); String getUrl(); List<PostParent> parse(InputStream inputStream); }