cn.sylinx.hbatis.plugin.debug.DebugPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
package cn.sylinx.hbatis.plugin.debug;
import cn.sylinx.hbatis.plugin.IPlugin;
public class DebugPlugin implements IPlugin {
private boolean debug = false;
public void setDebug(boolean debug) {
this.debug = debug;
}
@Override
public boolean start(Object... objects) {
DebugWrapper.ME.setDebug(debug);
return true;
}
@Override
public boolean stop() {
return true;
}
}