Uses of Interface
org.jminor.common.model.valuemap.ValueProvider

Packages that use ValueProvider
org.jminor.common.model.valuemap   
org.jminor.framework.domain   
 

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

Subinterfaces of ValueProvider in org.jminor.common.model.valuemap
 interface ValueChangeMap<K,V>
          A ValueMap extension which keeps track of value modifications.
 interface ValueMap<K,V>
          An interface describing an object mapping values to keys, null values are allowed.
 

Classes in org.jminor.common.model.valuemap that implement ValueProvider
 class ValueChangeMapImpl<K,V>
          A default ValueChangeMap implementation.
 class ValueMapImpl<K,V>
          A default ValueMap implementation.
 

Uses of ValueProvider in org.jminor.framework.domain
 

Subinterfaces of ValueProvider in org.jminor.framework.domain
 interface Entity
          An ORM entity interface, providing access to the property values via the ValueMap interface.
static interface Entity.Key
          A class representing a primary key.
 

Methods in org.jminor.framework.domain with parameters of type ValueProvider
static Entity EntityUtil.createEntity(String entityID, ValueProvider<Property,Object> valueProvider)