Back to project page ReadabilitySDK.
The source code is released under:
MIT License
If you think the Android project ReadabilitySDK 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.idemidov.readability.parser; //from w ww . j a va2 s.c o m import com.idemidov.readability.data.CommandResponse; import org.json.JSONException; import java.io.Serializable; /** * Created by Ilya on 25/02/14. */ public interface Parser<T> extends Serializable { public CommandResponse<T> parse(String response) throws JSONException; }