All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.prodevelop.pui9.json.adapters.AbstractPuiGsonJsonDeserializer Maven / Gradle / Ivy

The newest version!
package es.prodevelop.pui9.json.adapters;

import com.google.gson.JsonDeserializer;
import com.google.gson.TypeAdapterFactory;

/**
 * Use this class to inherit from her when you create a new JsonDeserializer for
 * GSON. This way, it will be registered automatically during the application
 * load
 * 
 * @param  The type for this deserializer
 * @author Marc Gil - [email protected]
 */
public abstract class AbstractPuiGsonJsonDeserializer implements IPuiGsonTypeAdapter, JsonDeserializer {

	@Override
	public final Class getUnboxedType() {
		return null;
	}

	@Override
	public final TypeAdapterFactory getFactory() {
		return null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy