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

Packages that use Refreshable
org.jminor.common.model   
org.jminor.common.model.combobox   
org.jminor.common.model.valuemap   
org.jminor.framework.client.model   
org.jminor.framework.client.ui   
 

Uses of Refreshable in org.jminor.common.model
 

Subinterfaces of Refreshable in org.jminor.common.model
 interface FilteredTableModel<R,C>
          Specifies a table model that can be filtered.
 

Classes in org.jminor.common.model that implement Refreshable
 class AbstractFilteredTableModel<R,C>
          A TableModel implentation that supports filtering, searching and sorting.
 

Uses of Refreshable in org.jminor.common.model.combobox
 

Subinterfaces of Refreshable in org.jminor.common.model.combobox
 interface FilteredComboBoxModel<T>
          A ComboBoxModel extension that allows filtering via FilterCriteria objects.
 

Classes in org.jminor.common.model.combobox that implement Refreshable
 class BooleanComboBoxModel
          A ComboBoxModel for boolean values, true, false and null.
 class DefaultFilteredComboBoxModel<T>
          A default FilteredComboBoxModel implementation.
 class ItemComboBoxModel<T>
          A ComboBoxModel implementation based on the ItemComboBoxModel.Item class.
 

Uses of Refreshable in org.jminor.common.model.valuemap
 

Subinterfaces of Refreshable in org.jminor.common.model.valuemap
 interface ValueChangeMapEditModel<K,V>
          Specifies an object which facilitates the editing of values in a ValueChangeMap
 

Classes in org.jminor.common.model.valuemap that implement Refreshable
 class AbstractValueChangeMapEditModel<K,V>
          A class which facilitates the editing of the contents of a ValueChangeMap instance by providing a validation mechanism as well as value change events.
 

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

Subinterfaces of Refreshable in org.jminor.framework.client.model
 interface EntityApplicationModel
          A central application model class.
 interface EntityComboBoxModel
          Specifies a ComboBoxModel containing entities.
 interface EntityEditModel
          Specifies a class for editing entity instances.
 interface EntityModel
          Specifies a class responsible for, among other things, coordinating a EntityEditModel and an EntityTableModel.
 interface EntityTableModel
          Specifies a table model containing Entity objects
 interface EntityTableSearchModel
          This interface defines filtering functionality, which refers to showing/hiding entities already available in a table model and searching functionality, which refers to configuring the underlying query, which then needs to be re-run.
 interface ForeignKeySearchModel
          A search model based on foreign key properties.
 

Classes in org.jminor.framework.client.model that implement Refreshable
 class DefaultEntityApplicationModel
          A central application model class.
 class DefaultEntityComboBoxModel
          A ComboBoxModel based on an Entity, showing by default all the entities in the underlying table.
 class DefaultEntityEditModel
          A default EntityEditModel implementation String entityID = "some.entity"; String clientTypeID = "JavadocDemo"; User user = new User("scott", "tiger"); EntityConnectionProvider connectionProvider = EntityConnectionProviders.createConnectionProvider(user, clientTypeID); EntityEditModel editModel = new DefaultEntityEditModel(entityID, connectionProvider); EntityEditPanel panel = new EntityEditPanel(editModel);
 class DefaultEntityModel
          A default EntityModel implementation.
 class DefaultEntityTableModel
          A TableModel implementation for displaying and working with entities.
 class DefaultEntityTableSearchModel
          A default EntityTableSearchModel implementation
 class DefaultForeignKeySearchModel
          A default ForeignKeySearchModel implementation.
 class DefaultPropertyComboBoxModel
          A combo box model based on a single entity property.
 

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

Constructors in org.jminor.framework.client.ui with parameters of type Refreshable
EntityTableSearchSimplePanel(EntityTableSearchModel searchModel, Refreshable refreshable)
          Instantiates a new EntityTableSearchSimplePanel.