Uses of Class
velosurf.context.Instance

Packages that use Instance
velosurf.context Contains all classes that can be accessed from inside a Velocity template. 
velosurf.model Classes linked to the data model : entities, attributes and actions Package Specification
 

Uses of Instance in velosurf.context
 

Subclasses of Instance in velosurf.context
 class ExternalObjectWrapper
          This wrapper allows one to specify custom mapping objects that don't inherit from Instance.
 

Methods in velosurf.context that return Instance
 Instance EntityReference.fetch(java.util.List values)
          Fetch an Instance of this entity, specifying the values of its key columns in their natural order.
 Instance EntityReference.fetch(java.util.Map values)
          Fetch an Instance of this entity, specifying the values of its key columns in the map.
 Instance EntityReference.fetch(java.lang.Number keyValue)
          Fetch an Instance of this entity, specifying the value of its unique key column as an integer
 Instance EntityReference.fetch(java.lang.String keyValue)
          Fetch an Instance of this entity, specifying the value of its unique key column as a string
 Instance EntityReference.newInstance()
          Create a new instance for this entity
 

Uses of Instance in velosurf.model
 

Methods in velosurf.model that return Instance
 Instance Entity.fetch(java.util.List values)
          fetch an instance from key values stored in a List in natural order
 Instance Entity.fetch(java.lang.Number keyValue)
          fetch an instance from its key value specified as a Number
 Instance Entity.fetch(ReadOnlyMap values)
          fetch an instance from key values stored in a Map
 Instance Entity.fetch(java.lang.String keyValue)
          fetch an instance from its key value as a string
 Instance Entity.getInstance(java.util.Map values)
          get an instance whose values are in a map (by default, do not update instance values with map values if the instance is found in the cache)
 Instance Entity.getInstance(java.util.Map values, boolean updateValues)
          get an instance whose values are in a map
 Instance Entity.getInstance(ReadOnlyMap values)
          get an instance from its values contained in a DataAccessor object (by default, update all fields based on the values in the DataAccessor if the instance has been found in the cache)
 Instance Entity.getInstance(ReadOnlyMap values, boolean updateValues)
          get an instance from a DataAccessor object
 Instance Entity.newInstance()
          create a new realisation of this entity
 Instance Entity.newInstance(java.util.Map values)
          builds a new instance from values contained in a Map
 Instance Entity.newInstance(ReadOnlyMap values)
          build a new instance from a DataAccessor object
 



~ooOoo~