com.ibm.websphere.query.base
Interface IJoin

All Superinterfaces:
IStringBuilder, java.io.Serializable
All Known Implementing Classes:
Join

public interface IJoin
extends IStringBuilder

An implementation of IJoin represents a join between two tables.


Method Summary
 IAttribute getCompareAttribute()
           
 IAttribute getFromAttribute()
           
 ITable getTable()
           
 IAttribute getToAttribute()
           
 void setCompareAttribute(IAttribute attribute)
           
 void setFromAttribute(IAttribute attribute)
           
 void setTable(ITable table)
           
 void setToAttribute(IAttribute attribute)
           
 
Methods inherited from interface com.ibm.websphere.query.base.IStringBuilder
buildString, buildString
 

Method Detail

setTable

void setTable(ITable table)

getTable

ITable getTable()

setCompareAttribute

void setCompareAttribute(IAttribute attribute)

getCompareAttribute

IAttribute getCompareAttribute()

setFromAttribute

void setFromAttribute(IAttribute attribute)

getFromAttribute

IAttribute getFromAttribute()

setToAttribute

void setToAttribute(IAttribute attribute)

getToAttribute

IAttribute getToAttribute()