Uses of Interface
net.sf.jaxme.sqls.ColumnSet

Packages that use ColumnSet
net.sf.jaxme.js.pattern The pattern package This package contains a set of design patterns implemented with the JaxMe JavaSource generator framework.  
net.sf.jaxme.sqls   
net.sf.jaxme.sqls.impl   
 

Uses of ColumnSet in net.sf.jaxme.js.pattern
 

Methods in net.sf.jaxme.js.pattern with parameters of type ColumnSet
protected  void VersionGenerator.getSelectRowsCode(JavaMethod pMethod, VersionGenerator.TableInfo pTableInfo, ColumnSet pColumnSet, DirectAccessible pConn, DirectAccessible pMap, DirectAccessible pValues, boolean pReturnValue)
          Generates code for reading all rows matching the given key.
protected  LocalJavaField VersionGenerator.getCacheDataClassInstance(JavaMethod pMethod, VersionGenerator.TableInfo pTableInfo, ColumnSet pColumnSet, DirectAccessible pValues)
          Creates an instance of the inner class CacheData by reading the key from the given row.
protected  void VersionGenerator.getApplyCacheData(JavaMethod pMethod, VersionGenerator.TableInfo pTableInfo, ColumnSet pColumnSet, DirectAccessible pRow, DirectAccessible pData)
          Updates a row by reading the values from an instance of the inner class CacheData.
 

Uses of ColumnSet in net.sf.jaxme.sqls
 

Subinterfaces of ColumnSet in net.sf.jaxme.sqls
 interface ForeignKey
          Interface of a foreign key.
 interface Index
          Interface of an index declaration.
 

Methods in net.sf.jaxme.sqls that return ColumnSet
 ColumnSet ForeignKey.getReferencedColumns()
          Returns the set of referenced columns.
 

Methods in net.sf.jaxme.sqls with parameters of type ColumnSet
 void CombinedConstraint.addJoin(TableReference pReferencingTable, ColumnSet pReferencingColumnSet, TableReference pReferencedTable, ColumnSet pReferencedColumnSet)
          Creates a JOIN condition matching the given column reference.
 void CombinedConstraint.addColumnSetQuery(ColumnSet pSet, TableReference pTableReference)
          Adds a check for the columns of the given column set.
 

Uses of ColumnSet in net.sf.jaxme.sqls.impl
 

Classes in net.sf.jaxme.sqls.impl that implement ColumnSet
 class ForeignKeyImpl
          Implementation of a foreign key.
 class IndexImpl
           
 

Methods in net.sf.jaxme.sqls.impl that return ColumnSet
 ColumnSet ForeignKeyImpl.getReferencedColumns()
           
 

Methods in net.sf.jaxme.sqls.impl with parameters of type ColumnSet
 void CombinedConstraintImpl.addColumnSetQuery(ColumnSet pSet, TableReference pTableReference)
           
 void CombinedConstraintImpl.addJoin(TableReference pReferencingTable, ColumnSet pReferencingColumnSet, TableReference pReferencedTable, ColumnSet pReferencedColumnSet)