1 22 23 package org.xquark.extractor.sql; 24 25 26 public abstract class SqlUnaryOperator extends SqlExpression 27 { 28 29 private static final String RCSRevision = "$Revision: 1.3 $"; 30 private static final String RCSName = "$Name: $"; 31 32 protected SqlExpression _operand; 33 34 38 public SqlUnaryOperator(SqlExpression operand) 39 { 40 setOperand (operand ); 41 } 42 43 46 public SqlUnaryOperator() 47 { 48 49 } 50 51 56 public SqlExpression getOperand() 57 { 58 return _operand; 59 } 60 61 66 public void setOperand(SqlExpression aOperand) 67 { 68 _operand = aOperand; 69 } 70 71 } 72 | Popular Tags |