Uses of Interface
dyntable.EntityList

Uses of EntityList in dyntable
 

Classes in dyntable that implement EntityList
 class OrderTranslatorEntityList
          $Id: OrderTranslatorEntityList.java,v 1.0 2005/09/25 jDynTable@gmx.de $
This OrderTranslatorEntityList provides a temporary ordering of the EntityList for display purposes.
 class ProxyEntityList
          $Id: ProxyEntityList.java,v 1.0 2005/09/25 jDynTable@gmx.de $
The ProxyEntityList implements the EntityList interface which describes the functions that must be provided for managing entities within an ordered list.
 

Methods in dyntable that return EntityList
 EntityList OrderTranslatorEntityList.getEntityList()
          Returns the current EntityList.
 EntityList JDynTable.getEntityList()
          Returns the EntityList containing all the entities of the table.
 EntityList JDynTable.getDisplayEntityList()
          Returns the EntityList in which all the entities are ordered in their display order.
 

Methods in dyntable with parameters of type EntityList
 void ProxyEntityList.replaceAll(EntityList v)
           
 void OrderTranslatorEntityList.setEntityList(EntityList e)
          Sets the EntityList and thus replaces all the entities in the table by the entities in the EntityList provided.
 void OrderTranslatorEntityList.replaceAll(EntityList e)
          Replaces all the entities in the EntityList with those specified by the new EntityList.
 void JDynTable.setEntityList(EntityList eList)
          Sets the EntityList for this table, replacing the current EntityList.
 void EntityList.replaceAll(EntityList v)
          Replaces all the current entities with those given by the EntityList parameter.
 

Constructors in dyntable with parameters of type EntityList
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.