Back to project page LicenseModuleChecker-Client-Android.
The source code is released under:
<?xml version="1.0" encoding="UTF-8"?> <module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4"> <comp...
If you think the Android project LicenseModuleChecker-Client-Android 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.asynhkm.productchecker.schema; //ww w. java2s . c o m import com.google.gson.JsonDeserializationContext; import com.google.gson.JsonDeserializer; import com.google.gson.JsonElement; import com.google.gson.JsonParseException; import java.lang.reflect.Type; /** * Created by Hesk on 2/12/2014. */ public class RRDeserialize implements JsonDeserializer<ReturnResult> { @Override public ReturnResult deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException { return null; // return json.getAsJsonPrimitive().; } }