1 22 23 package org.xquark.extractor.xfunctions; 24 25 import org.xquark.extractor.algebra.Expression; 26 import org.xquark.extractor.sql.SqlExpression; 27 28 61 public final class XfEndsWith extends Xfunction_Boolean 62 { 63 64 private static final String RCSRevision = "$Revision: 1.3 $"; 65 private static final String RCSName = "$Name: $"; 66 67 public XfEndsWith() 68 { 69 super("XfEndsWith"); 70 } 71 72 public XfEndsWith( Expression arg0, Expression arg1) 73 { 74 super("XfEndsWith"); 75 setArgument(0, arg0); 76 setArgument(1, arg1); 77 } 78 79 public SqlExpression accept(org.xquark.extractor.algebra.GenSqlVisitor visitor) 80 { 81 return visitor.visit(this); 82 } 83 84 public void accept(org.xquark.extractor.algebra.AlgebraVisitor visitor) 85 { 86 visitor.visit(this); 87 } 88 } 89 | Popular Tags |