1 22 23 package org.xquark.extractor.sql; 24 25 26 public class SqlUnOpNot extends SqlUnaryOperator 27 { 28 29 private static final String RCSRevision = "$Revision: 1.4 $"; 30 private static final String RCSName = "$Name: $"; 31 32 33 38 public SqlUnOpNot(SqlExpression operand) 39 { 40 super (operand); 41 } 42 43 46 public SqlUnOpNot() 47 { 48 49 } 50 51 55 public String toSql(Context context) 56 { 57 59 String retVal ; 60 retVal = " NOT ( "+getOperand().toSql(context)+ " ) " ; 61 62 return retVal ; 64 } 65 } 66 | Popular Tags |