net.sf.wcfart.wcf.param.SqlDummyExpr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wcf-art Show documentation
Show all versions of wcf-art Show documentation
jpivot-wcf code used by the ART reporting tool
The newest version!
package net.sf.wcfart.wcf.param;
/**
* Dummy SQL Expression like "1=1"
*/
public class SqlDummyExpr implements SqlExpr {
public void accept(SqlExprVisitor visitor) {
visitor.visitSqlDummyExpr(this);
}
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy