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 
 

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<java.lang.Object> values)
          Fetch an Instance of this entity, specifying the values of its key columns in their natural order.
 Instance EntityReference.fetch(java.util.Map<java.lang.String,java.lang.Object> 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.
 Instance EntityReference.newInstance(java.util.Map<java.lang.String,java.lang.Object> values)
          Build a new instance from a Map object.
 Instance RowIterator.next()
          Returns the next element in the iteration.
 

Methods in velosurf.context that return types with arguments of type Instance
 java.util.List<Instance> RowIterator.getRows()
          Gets all the rows in a list of instances.
 

Uses of Instance in velosurf.model
 

Methods in velosurf.model that return Instance
 Instance Entity.fetch(java.util.List<java.lang.Object> values)
          Fetch an instance from key values stored in a List in natural order.
 Instance Entity.fetch(java.util.Map<java.lang.String,java.lang.Object> values)
          Fetch an instance from key values stored in a Map.
 Instance Entity.fetch(java.lang.Number keyValue)
          Fetch an instance from its key value specified as a Number.
 Instance Entity.fetch(java.lang.String keyValue)
          Fetch an instance from its key value as a string.
 Instance Entity.newInstance()
          Create a new realisation of this entity.
 Instance Entity.newInstance(java.util.Map<java.lang.String,java.lang.Object> values)
          Build a new instance from a Map object.
 Instance Entity.newInstance(java.util.Map<java.lang.String,java.lang.Object> values, boolean useSQLnames)
          Build a new instance from a Map object.
 



~ooOoo~