com.jinfonet.interfaces.query
Interface TableFilter

All Known Implementing Classes:
TableFilterImpl

public interface TableFilter


Method Summary
 boolean setAllColumns(java.lang.String[] columns)
           
 boolean setSelectedColumn(java.lang.String[] selectedColumn)
          push down the selected column base the table.
 boolean setSimpleTableWhere(SimpleTableWhere[] sqlWhere)
          push down the where condition base the table.
 boolean setSortByColumn(java.lang.String sortByColumn)
          Have join base the sortByColumn, push down the sort column.
 

Method Detail

setSimpleTableWhere

boolean setSimpleTableWhere(SimpleTableWhere[] sqlWhere)
push down the where condition base the table. each simpleTableWhere is and relation.


setSelectedColumn

boolean setSelectedColumn(java.lang.String[] selectedColumn)
push down the selected column base the table.


setSortByColumn

boolean setSortByColumn(java.lang.String sortByColumn)
Have join base the sortByColumn, push down the sort column.


setAllColumns

boolean setAllColumns(java.lang.String[] columns)