1 22 23 package org.xquark.extractor.sql; 24 25 26 public class SqlBinOpDifference 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 SqlBinOpDifference(SqlExpression leftOperand, SqlExpression rightOperand) 41 { 42 super ( leftOperand, rightOperand ); 43 } 44 45 48 public SqlBinOpDifference() 49 { 50 } 51 52 } 53 | Popular Tags |