1 22 23 package org.xquark.extractor.sql; 24 25 26 public class SqlBinOpIntersect extends SqlBinaryOperator implements Executable 27 { 28 29 private static final String RCSRevision = "$Revision: 1.3 $"; 30 private static final String RCSName = "$Name: $"; 31 32 33 40 public SqlBinOpIntersect(SqlExpression leftOperand, SqlExpression rightOperand) 41 { 42 super (leftOperand, rightOperand) ; 43 } 44 45 48 public SqlBinOpIntersect() 49 { 50 } 51 } 52 | Popular Tags |