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

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

Uses of JoinReference in net.sf.jaxme.sqls
 

Methods in net.sf.jaxme.sqls that return JoinReference
 JoinReference SelectTableReference.join(Table pTable)
          Indicates that the referenced table shall be joined with the given table pTable and returns a reference to that table.
 JoinReference SelectTableReference.leftOuterJoin(Table pTable)
          Indicates that the referenced table shall be joined in a left outer join with the given table pTable and returns a reference to that table.
 JoinReference SelectTableReference.getRightJoinedTableReference()
          Returns the right table of a possible join or null, if there is no such table.
 

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

Classes in net.sf.jaxme.sqls.impl that implement JoinReference
 class JoinReferenceImpl
           
 

Methods in net.sf.jaxme.sqls.impl that return JoinReference
 JoinReference SelectTableReferenceImpl.join(Table pTable)
           
 JoinReference SelectTableReferenceImpl.leftOuterJoin(Table pTable)
           
 JoinReference SelectTableReferenceImpl.getRightJoinedTableReference()
           
 

Methods in net.sf.jaxme.sqls.impl with parameters of type JoinReference
protected  java.lang.String SQLGeneratorImpl.getJoinAlias(JoinReference pJoinReference)