Uses of Class
org.jminor.common.model.valuemap.exception.ValidationException

Packages that use ValidationException
org.jminor.common.model.valuemap   
org.jminor.common.model.valuemap.exception   
org.jminor.framework.client.model   
org.jminor.framework.client.ui   
org.jminor.framework.domain   
 

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

Methods in org.jminor.common.model.valuemap that throw ValidationException
 void ValueChangeMapEditModel.validate(K key, int action)
          Checks if the value associated with the give key is valid, throws a ValidationException if not
 void AbstractValueChangeMapEditModel.validate(K key, int action)
          Checks if the value associated with the give key is valid, throws a ValidationException if not
 void ValueMapValidator.validate(ValueMap<K,V> valueMap, int action)
          Checks if the values in the given value map are valid
 void DefaultValueMapValidator.validate(ValueMap<K,V> valueMap, int action)
          Checks if the values in the given value map are valid
 void ValueMapValidator.validate(ValueMap<K,V> valueMap, K key, int action)
          Checks if the value associated with the give key is valid, throws a ValidationException if not
 void DefaultValueMapValidator.validate(ValueMap<K,V> valueMap, K key, int action)
          Checks if the value associated with the give key is valid, throws a ValidationException if not
 

Uses of ValidationException in org.jminor.common.model.valuemap.exception
 

Subclasses of ValidationException in org.jminor.common.model.valuemap.exception
 class NullValidationException
          An exception used to indicate that a null value was being associated with a key which does not allow null values.
 class RangeValidationException
          An exception used to indicate that a value was being associated with a key which does not fall within the allowed range of values.
 

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

Methods in org.jminor.framework.client.model that throw ValidationException
 List<Entity.Key> EntityEditModel.insert()
          Performs a insert on the active entity
 List<Entity.Key> DefaultEntityEditModel.insert()
          Performs a insert on the active entity
 List<Entity.Key> EntityEditModel.insert(List<Entity> entities)
          Performs an insert on the given entities, returns silently on recieving an empty list
 List<Entity.Key> DefaultEntityEditModel.insert(List<Entity> entities)
          Performs an insert on the given entities, returns silently on recieving an empty list
 List<Entity> EntityEditModel.update()
          Performs a update on the active entity
 List<Entity> DefaultEntityEditModel.update()
          Performs a update on the active entity
 void EntityTableModel.update(List<Entity> entities)
          Updates the given Entities.
 List<Entity> EntityEditModel.update(List<Entity> entities)
          Updates the given Entities.
 void DefaultEntityTableModel.update(List<Entity> entities)
          Updates the given Entities.
 List<Entity> DefaultEntityEditModel.update(List<Entity> entities)
          Updates the given Entities.
 

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

Methods in org.jminor.framework.client.ui that throw ValidationException
protected  void EntityEditPanel.validateData()
          for overriding, called before insert/update
 

Uses of ValidationException in org.jminor.framework.domain
 

Methods in org.jminor.framework.domain that throw ValidationException
 void Entity.Validator.validate(Collection<Entity> entities, int action)
          Validates the given Entity objects.
 void Entities.Validator.validate(Collection<Entity> entities, int action)
          Validates the given Entity objects.
 void Entity.Validator.validate(Entity entity, int action)
          Validates the values in the given entity
 void Entities.Validator.validate(Entity entity, int action)
          Validates the values in the given entity
 void Entity.Validator.validate(Entity entity, String propertyID, int action)
          Validates the given property in the given entity
 void Entities.Validator.validate(Entity entity, String propertyID, int action)
          Validates the given property in the given entity
 void Entities.Validator.validate(ValueMap<String,Object> valueMap, int action)
          Checks if the values in the given value map are valid
 void Entities.Validator.validate(ValueMap<String,Object> valueMap, String key, int action)
          Checks if the value associated with the give key is valid, throws a ValidationException if not