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

Packages that use TableReference
net.sf.jaxme.sqls   
net.sf.jaxme.sqls.impl   
 

Uses of TableReference in net.sf.jaxme.sqls
 

Subinterfaces of TableReference in net.sf.jaxme.sqls
 interface JoinReference
          This interface allows to specify join constraints.
 interface SelectTableReference
          A TableReference being used in a SELECT statement.
 

Methods in net.sf.jaxme.sqls that return TableReference
 TableReference Statement.setTable(Table pTable)
          Sets the table, for which the statement applies and returns a reference to the table.
 TableReference Statement.getTableReference()
          Returns the table reference, for which the statement applies.
 TableReference ColumnReference.getTableReference()
          Returns the TableReference that created the column reference.
 

Methods in net.sf.jaxme.sqls with parameters of type TableReference
 void CombinedConstraint.addJoin(ForeignKey pKey, TableReference pReferencingTable, TableReference pReferencedTable)
          Creates a JOIN condition matching the given foreign key.
 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 TableReference in net.sf.jaxme.sqls.impl
 

Classes in net.sf.jaxme.sqls.impl that implement TableReference
 class JoinReferenceImpl
           
 class SelectTableReferenceImpl
           
 class TableReferenceImpl
          Implementation of a TableReference.
 

Methods in net.sf.jaxme.sqls.impl that return TableReference
protected  TableReference StatementImpl.newTableReference(Table pTable)
           
 TableReference StatementImpl.setTable(Table pTable)
           
 TableReference StatementImpl.getTableReference()
           
protected  TableReference SelectStatementImpl.newTableReference(Table pTable)
           
 TableReference ColumnReferenceImpl.getTableReference()
           
 

Methods in net.sf.jaxme.sqls.impl with parameters of type TableReference
protected  java.lang.String SQLGeneratorImpl.getTableAlias(TableReference pTable)
           
 void CombinedConstraintImpl.addColumnSetQuery(ColumnSet pSet, TableReference pTableReference)
           
 void CombinedConstraintImpl.addJoin(ForeignKey pKey, TableReference pReferencingTable, TableReference pReferencedTable)
           
 void CombinedConstraintImpl.addJoin(TableReference pReferencingTable, ColumnSet pReferencingColumnSet, TableReference pReferencedTable, ColumnSet pReferencedColumnSet)