org.apache.ws.jaxme.sqls.oracle
Interface OraColumnReference

All Superinterfaces:
ColumnReference
All Known Implementing Classes:
OraColumnReferenceImpl

public interface OraColumnReference
extends ColumnReference

An extension of ColumnReference supporting the isPrior() clause.


Method Summary
 boolean isPrior()
          Returns, whether the column reference has the PRIOR attribute set.
 void setPrior(boolean pPrior)
          Sets, whether the column reference has the PRIOR attribute set.
 
Methods inherited from interface org.apache.ws.jaxme.sqls.ColumnReference
getAlias, getColumn, getTableReference, setAlias, setAlias
 

Method Detail

isPrior

boolean isPrior()
Returns, whether the column reference has the PRIOR attribute set. This attribute is required for the CONNECT BY clause.

See Also:
OraSelectStatement.getConnectBy(), setPrior(boolean)

setPrior

void setPrior(boolean pPrior)
Sets, whether the column reference has the PRIOR attribute set. This attribute is required for the CONNECT BY clause.

See Also:
OraSelectStatement.getConnectBy(), isPrior()