暂时不能用的 @Config

This commit is contained in:
Izzel_Aliz
2018-04-05 13:56:24 +08:00
parent 96269db54d
commit 4bb5df7cbb
9 changed files with 218 additions and 28 deletions

View File

@@ -0,0 +1,16 @@
package com.ilummc.tlib.bean;
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;
public class PropertyTypeAdaptor implements JsonDeserializer<Property> {
@Override
public Property deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext context) throws JsonParseException {
return null;
}
}