Uses of Interface
dyntable.EntityTableColumnModel

Uses of EntityTableColumnModel in dyntable
 

Classes in dyntable that implement EntityTableColumnModel
 class AbstractEntityTableColumnModel
          $Id: AbstractEntityTableColumnModel.java,v 1.0 2005/09/25 jDynTable@gmx.de $
The AbstractEntityTableColumnModel is a super class for models that define the columns to be displayed in an EntityTable.
 

Methods in dyntable that return EntityTableColumnModel
 EntityTableColumnModel ProxyColumnModel.getModel()
          Returns the model being used for managing the columns of the table.
 EntityTableColumnModel OrderTranslatorEntityList.getColumnModel()
          Returns the column model being used.
 EntityTableColumnModel JDynTable.getColumnModel()
          Returns the EntityTableColumnModel which defines the table columns.
 

Methods in dyntable with parameters of type EntityTableColumnModel
 void RowHeaderColumnModel.setModel(EntityTableColumnModel m)
          Sets the EntityTableColumnModel that is used to define the columns of the table and their properties.
 void ProxyColumnModel.setModel(EntityTableColumnModel m)
          Sets the model that will be used to manage the columns in the table.
 void OrderTranslatorEntityList.setColumnModel(EntityTableColumnModel c)
          Changes the column model to the one specified.
 void JDynTable.setColumnModel(EntityTableColumnModel cModel)
          Sets the EntityTableColumnModel that defines the table columns and the mapping between an entity and the table columns.
 

Constructors in dyntable with parameters of type EntityTableColumnModel
RowHeaderColumnModel(EntityTableColumnModel m)
          Constructs a new RowHeaderColumnModel with the given EntityTableColumnModel.
ProxyColumnModel(EntityTableColumnModel m)
          Constructs a new ProxyColumnModel with the given EntityTableColumnModel.
OrderTranslatorEntityList(EntityList e, EntityTableColumnModel c)
          Constructs a new OrderTranslatorEntityList with the given EntityList and EntityTableColumnModel.
JDynTable(EntityList eList, EntityTableColumnModel cModel)
          Constructs a new JDynTable with the given EntityList to manage the entities and the EntityTableColumnModel to define the columns of the table.