Uses of Interface
org.jminor.framework.client.model.EntityDataProvider

Packages that use EntityDataProvider
org.jminor.framework.client.model   
 

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

Subinterfaces of EntityDataProvider in org.jminor.framework.client.model
 interface EntityComboBoxModel
          Specifies a ComboBoxModel containing entities.
 interface EntityEditModel
          Specifies a class for editing entity instances.
 interface EntityLookupModel
          A interface responsible for doing entity lookups based on a set of criteria properties.
 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
 

Classes in org.jminor.framework.client.model that implement EntityDataProvider
 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 DefaultEntityLookupModel
          A default EntityLookupModel implementation
 class DefaultEntityModel
          A default EntityModel implementation.
 class DefaultEntityTableModel
          A TableModel implementation for displaying and working with entities.
 class DefaultEntityTableSearchModel
          A default EntityTableSearchModel implementation