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

com.silentgo.json.configuration.JSONConfigExtra Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package com.silentgo.json.configuration;

/**
 * Project : json
 * Package : com.silentgo.json.configuration
 *
 * @author teddyzhu
 *         

* Created by teddyzhu on 2017/1/7. */ public class JSONConfigExtra extends JSONConfig { private Object extra; public JSONConfigExtra(boolean hasSkipped) { super(hasSkipped); } public JSONConfigExtra(JSONConfig config, Object extra) { setLazy(config.isLazy()); setHasSkipped(config.isHasSkipped()); this.extra = extra; } public Object getExtra() { return extra; } public void setExtra(Object extra) { this.extra = extra; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy