package net.sf.jsqlparser.expression.operators.relational; import net.sf.jsqlparser.expression.BinaryExpression; import net.sf.jsqlparser.expression.ExpressionVisitor; import net.sf.jsqlparser.expression.Relation; public class Matches extends BinaryExpression implements Relation{ private String comment; public void accept(ExpressionVisitor expressionVisitor) { expressionVisitor.visit(this); } public String getStringExpression() { return (getComment() != null ? getComment()+" " : "") + "@@"; } /** * @return the comment */ public String getComment() { return comment; } /** * @param comment the comment to set */ public void setComment(String comment) { this.comment = comment; } }