Uses of Class
dyntable.EntityListException

Uses of EntityListException in dyntable
 

Methods in dyntable that throw EntityListException
 boolean ProxyEntityList.setEntity(int index, java.lang.Object entityInstance)
           
 boolean ProxyEntityList.addEntity(java.lang.Object entityInstance)
           
 boolean ProxyEntityList.insertEntity(int index, java.lang.Object entityValue)
           
 boolean ProxyEntityList.moveEntity(int startIndex, int endIndex, int newIndex)
           
 boolean ProxyEntityList.removeEntity(int index)
           
 boolean OrderTranslatorEntityList.setEntity(int index, java.lang.Object entityInstance)
          Replaces the entity at the specified index.
 boolean OrderTranslatorEntityList.addEntity(java.lang.Object entityInstance)
          Adds a new entity to the EntityList and updates this OrderTranslatorEntityList.
 boolean OrderTranslatorEntityList.insertEntity(int index, java.lang.Object entityInstance)
          Inserts the given entity at the index specified and moves all other entities to make room for the new entity if needed.
 boolean OrderTranslatorEntityList.moveEntity(int startIndex, int endIndex, int newIndex)
          Moves the entities between the startIndex and endIndex inclusive to the new location specified by the newIndex.
 boolean OrderTranslatorEntityList.removeEntity(int index)
          Removes the entity at the specified index.
 boolean EntityList.setEntity(int index, java.lang.Object entityInstance)
          Replaces the entity instance at the specified index.
 boolean EntityList.addEntity(java.lang.Object entityInstance)
          Adds a new entity to this EntityList.
 boolean EntityList.insertEntity(int index, java.lang.Object entityValue)
          Inserts an entity into this EntityList.
 boolean EntityList.moveEntity(int startIndex, int endIndex, int newIndex)
          Moves entities starting from the start index, to the end index, to a new location starting at the new index given.
 boolean EntityList.removeEntity(int index)
          Removes the specified entity.