SPT Core API

com.sptci.echo2
Interface FilterView<F>

Type Parameters:
F - The class of the model object backing the view.
All Superinterfaces:
View

public interface FilterView<F>
extends View

An interface used to represent View components that hold a model object that is used to filter the objects displayed in it. Typically used in views that encompass JDOTable components.

Copyright 2008 Sans Pareil Technologies, Inc.

Version:
$Id: FilterView.java 4120 2008-05-25 20:49:48Z rakesh $
Author:
Rakesh Vidyadharan 2008-05-14

Method Summary
 F getFilter()
          Return the model object that is used to filter the other model objects backing the view.
 void setFilter(F filter)
          Set the model object used to filter the other model objects in the view.
 

Method Detail

getFilter

F getFilter()
Return the model object that is used to filter the other model objects backing the view.

Returns:
The filter object instance.

setFilter

void setFilter(F filter)
Set the model object used to filter the other model objects in the view.

Parameters:
filter - The object used to filter the data in the view.

SPT Core API