1 22 23 package org.xquark.extractor.sybase.sql; 24 25 import org.xquark.extractor.sql.Context; 26 27 public class SqlAttributeExpression extends org.xquark.extractor.sql.SqlAttributeExpression 28 { 29 private static final String RCSRevision = "$Revision: 1.3 $"; 30 private static final String RCSName = "$Name: $"; 31 32 public SqlAttributeExpression() {} 33 34 public SqlAttributeExpression(String tableInstance, String attribute) 35 { 36 super(tableInstance, attribute); 37 } 38 39 public String toSql(Context context) { 40 return super.toSql(context,false); 41 } 42 } 43 | Popular Tags |