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

cn.sylinx.hbatis.plugin.debug.DebugWrapper Maven / Gradle / Ivy

The newest version!
package cn.sylinx.hbatis.plugin.debug;

public enum DebugWrapper {

	ME;

	private boolean debug = false;

	public boolean isDebug() {
		return debug;
	}

	void setDebug(boolean debug) {
		this.debug = debug;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy