gistoolkit.datasources.filter
Class SQLExpression

java.lang.Object
  extended bygistoolkit.datasources.filter.Expression
      extended bygistoolkit.datasources.filter.SQLExpression
All Implemented Interfaces:
Filter, SQLFilter

public class SQLExpression
extends Expression
implements SQLFilter

Class to contain SQLFilters.


Field Summary
 
Fields inherited from class gistoolkit.datasources.filter.Expression
AND, OR
 
Constructor Summary
SQLExpression()
          Creates new SQLExpression, only for use with set node.
SQLExpression(SQLFilter inFilter1, int inComparison, SQLFilter inFilter2)
          Create a new SQLExpression with these two filters.
 
Method Summary
 java.lang.String getFilterSQL(SQLConverter inSQLConverter)
          The SQL functions have been moved to database specific SQLConverters.
 
Methods inherited from class gistoolkit.datasources.filter.Expression
contains, getComparison, getFilter1, getFilter2, getFilterName, getNode, setFilterName, setNode
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface gistoolkit.datasources.filter.Filter
contains, getFilterName, getNode, setNode
 

Constructor Detail

SQLExpression

public SQLExpression()
Creates new SQLExpression, only for use with set node.


SQLExpression

public SQLExpression(SQLFilter inFilter1,
                     int inComparison,
                     SQLFilter inFilter2)
Create a new SQLExpression with these two filters.

Method Detail

getFilterSQL

public java.lang.String getFilterSQL(SQLConverter inSQLConverter)
The SQL functions have been moved to database specific SQLConverters.

Specified by:
getFilterSQL in interface SQLFilter