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

com.xkcoding.json.support.AbstractJsonAdapter Maven / Gradle / Ivy

There is a newer version: 0.0.3
Show newest version
package com.xkcoding.json.support;

import com.xkcoding.json.config.JsonConfig;

/**
 * 

* 抽象实现 *

* * @author yangkai.shen * @date Created in 2021-01-20 17:12 */ public abstract class AbstractJsonAdapter implements JsonAdapter { protected JsonConfig jsonConfig; public AbstractJsonAdapter(JsonConfig jsonConfig) { this.jsonConfig = jsonConfig; } public void setJsonConfig(JsonConfig jsonConfig) { this.jsonConfig = jsonConfig; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy