Uses of Class
velosurf.model.Entity

Packages that use Entity
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  
velosurf.sql Contains all core classes dealing with the database itself. 
velosurf.tools Contains the velocity-tools version of the Velosurf tool, plus an http query parameter parser tool. 
 

Uses of Entity in velosurf.context
 

Fields in velosurf.context declared as Entity
protected  Entity RowIterator.mResultEntity
          the resulting entity
protected  Entity Instance.mEntity
          this Instance's Entity
protected  Entity EntityReference.mEntity
          the wrapped entity
 

Constructors in velosurf.context with parameters of type Entity
RowIterator(Pooled inPooledStatement, java.sql.ResultSet inResultSet, Entity inResultEntity)
          Build a new RowIterator
Instance(Entity inEntity)
          Build an empty instance for the given entity
EntityReference(Entity inEntity)
          Builds a new EntityReference.
 

Uses of Entity in velosurf.model
 

Fields in velosurf.model declared as Entity
protected  Entity Attribute.mEntity
          parent entity
protected  Entity Attribute.mResultEntity
          for row and rowset attributes, the resulting entity (if specified)
 

Constructors in velosurf.model with parameters of type Entity
Attribute(Entity inEntity, org.jdom.Element inJDOMAttribute)
          builds a new attribute
 

Uses of Entity in velosurf.sql
 

Fields in velosurf.sql declared as Entity
protected  Entity PooledPreparedStatement.mEntity
          the resulting entity
protected  Entity DBConnection.mRootEntity
          root entity that contains all root attributes and actions
 

Methods in velosurf.sql that return Entity
 Entity DBConnection.getEntityCreate(java.lang.String name)
          get a named entity or creeate it if it doesn't exist
 Entity DBConnection.getEntity(java.lang.String inName)
          get an existing entity
 

Methods in velosurf.sql with parameters of type Entity
 RowIterator PooledStatement.query(java.lang.String inQuery, Entity inResultEntity)
          gets the resultset for this statement, specifying the entity the results belong to
 java.lang.Object PooledStatement.fetch(java.lang.String inQuery, Entity inResultEntity)
          fetch a single row, specyfing the entity it belongs to
 java.lang.Object PooledPreparedStatement.fetch(java.util.List inParams, Entity inResultEntity)
          get a unique object by id and specify the Entity this object is an Instance of
 java.lang.Object PooledPreparedStatement.fetch(java.util.Map inParams, Entity inResultEntity)
          get a unique object by id and specify the Entity this object is an Instance of
 RowIterator PooledPreparedStatement.query(java.util.List inParams, Entity inResultEntity)
          gets the rowset
 RowIterator DBConnection.query(java.lang.String inQuery, Entity inEntity)
          issue a query, knowing the resulting entity
 

Uses of Entity in velosurf.tools
 

Fields in velosurf.tools declared as Entity
(package private)  Entity HttpQueryTool.AutoFetchInfos.mEntity
           
 

Methods in velosurf.tools with parameters of type Entity
static void HttpQueryTool.autofetch(Entity entity, java.lang.String param, java.lang.String name, boolean protect)
           
 

Constructors in velosurf.tools with parameters of type Entity
HttpQueryTool.AutoFetchInfos(Entity entity, java.lang.String name, boolean protect)
           
 



ooOoo