com.dexcoder.dal.batis.xml.StaticTextSqlNode Maven / Gradle / Ivy
package com.dexcoder.dal.batis.xml;
import com.dexcoder.dal.batis.build.DynamicContext;
/**
* Created by liyd on 2015-11-30.
*/
public class StaticTextSqlNode implements SqlNode {
private String text;
public StaticTextSqlNode(String text) {
this.text = text;
}
public boolean apply(DynamicContext context) {
context.appendSql(text);
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy