1 22 23 package org.xquark.extractor.sql; 24 25 26 public abstract class SqlBinaryOperator extends SqlExpression 27 { 28 29 private static final String RCSRevision = "$Revision: 1.3 $"; 30 private static final String RCSName = "$Name: $"; 31 32 protected SqlExpression _leftOperand; 33 protected SqlExpression _rightOperand; 34 35 40 public SqlBinaryOperator(SqlExpression leftOperand, SqlExpression rightOperand) 41 { 42 setLeftOperand( leftOperand) ; 43 setRightOperand( rightOperand) ; 44 } 45 46 51 public SqlBinaryOperator() 52 { 53 54 } 55 56 61 public SqlExpression getLeftOperand() 62 { 63 return _leftOperand; 64 } 65 66 71 public void setLeftOperand(SqlExpression aLeftOperand) 72 { 73 _leftOperand = aLeftOperand; 74 } 75 76 81 public SqlExpression getRightOperand() 82 { 83 return _rightOperand; 84 } 85 86 91 public void setRightOperand(SqlExpression aRightOperand) 92 { 93 _rightOperand = aRightOperand; 94 } 95 96 } 97 | Popular Tags |