Uses of Interface
org.jminor.common.model.ColumnSearchModel

Packages that use ColumnSearchModel
org.jminor.common.model   
org.jminor.common.ui   
org.jminor.framework.client.model   
org.jminor.framework.client.ui   
 

Uses of ColumnSearchModel in org.jminor.common.model
 

Classes in org.jminor.common.model that implement ColumnSearchModel
 class DefaultColumnSearchModel<K>
          A default ColumnSearchModel model implementation.
 

Methods in org.jminor.common.model that return ColumnSearchModel
 ColumnSearchModel<C> FilteredTableModel.getFilterModel(C columnIdentifier)
           
 ColumnSearchModel<C> AbstractFilteredTableModel.getFilterModel(C columnIdentifier)
          
 

Constructor parameters in org.jminor.common.model with type arguments of type ColumnSearchModel
AbstractFilteredTableModel(TableColumnModel columnModel, List<? extends ColumnSearchModel<C>> columnFilterModels)
          Instantiates a new table model.
 

Uses of ColumnSearchModel in org.jminor.common.ui
 

Methods in org.jminor.common.ui that return ColumnSearchModel
 ColumnSearchModel<K> ColumnSearchPanel.getModel()
           
 ColumnSearchModel<K> ColumnSearchPanel.InputFieldProvider.getSearchModel()
           
 

Constructors in org.jminor.common.ui with parameters of type ColumnSearchModel
ColumnSearchPanel(ColumnSearchModel<K> searchModel, boolean includeActivateBtn, boolean includeToggleAdvBtn)
          Instantiates a new ColumnSearchPanel, with a default input field provider.
ColumnSearchPanel(ColumnSearchModel<K> searchModel, boolean includeActivateBtn, boolean includeToggleAdvBtn, ColumnSearchPanel.InputFieldProvider inputFieldProvider, SearchType... searchTypes)
          Instantiates a new ColumnSearchPanel.
ColumnSearchPanel(ColumnSearchModel<K> searchModel, boolean includeActivateBtn, boolean includeToggleAdvBtn, JComponent upperBoundField, JComponent lowerBoundField, SearchType... searchTypes)
          Instantiates a new ColumnSearchPanel, with a default input field provider.
ColumnSearchPanel(ColumnSearchModel<K> searchModel, boolean includeActivateBtn, boolean includeToggleAdvBtn, SearchType... searchTypes)
          Instantiates a new ColumnSearchPanel, with a default input field provider.
 

Uses of ColumnSearchModel in org.jminor.framework.client.model
 

Subinterfaces of ColumnSearchModel in org.jminor.framework.client.model
 interface ForeignKeySearchModel
          A search model based on foreign key properties.
 interface PropertySearchModel<T extends Property.SearchableProperty>
          A base interface for searching a set of entities based on a property.
 

Classes in org.jminor.framework.client.model that implement ColumnSearchModel
 class DefaultForeignKeySearchModel
          A default ForeignKeySearchModel implementation.
 class DefaultPropertyFilterModel
          A class for filtering a set of entities based on a property.
 class DefaultPropertySearchModel
          A class for searching a set of entities based on a property.
 

Methods in org.jminor.framework.client.model that return ColumnSearchModel
 ColumnSearchModel<Property> EntityTableSearchModel.getPropertyFilterModel(String propertyID)
          The PropertyFilterModel associated with the property identified by propertyID
 ColumnSearchModel<Property> DefaultEntityTableSearchModel.getPropertyFilterModel(String propertyID)
          The PropertyFilterModel associated with the property identified by propertyID
 ColumnSearchModel<Property> PropertyFilterModelProvider.initializePropertyFilterModel(Property property)
          Initializes a PropertyFilterModel for the given property
 ColumnSearchModel<Property> DefaultPropertyFilterModelProvider.initializePropertyFilterModel(Property property)
          Initializes a PropertyFilterModel for the given property
 

Methods in org.jminor.framework.client.model that return types with arguments of type ColumnSearchModel
 Collection<ColumnSearchModel<Property>> EntityTableSearchModel.getPropertyFilterModels()
           
 Collection<ColumnSearchModel<Property>> DefaultEntityTableSearchModel.getPropertyFilterModels()
          
 List<ColumnSearchModel<Property>> EntityTableSearchModel.getPropertyFilterModelsOrdered()
           
 List<ColumnSearchModel<Property>> DefaultEntityTableSearchModel.getPropertyFilterModelsOrdered()
          
 

Uses of ColumnSearchModel in org.jminor.framework.client.ui
 

Constructors in org.jminor.framework.client.ui with parameters of type ColumnSearchModel
PropertyFilterPanel(ColumnSearchModel<Property> model)
          Instantiates a new PropertyFilterPanel.
PropertyFilterPanel(ColumnSearchModel<Property> model, boolean includeActivateBtn, boolean includeToggleAdvBtn)
          Instantiates a new PropertyFilterPanel.