KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ws > jaxme > sqls > oracle > OraColumnReference


1 package org.apache.ws.jaxme.sqls.oracle;
2
3 import org.apache.ws.jaxme.sqls.ColumnReference;
4
5
6 /** An extension of {@link org.apache.ws.jaxme.sqls.ColumnReference}
7  * supporting the {@link #isPrior()} clause.
8  */

9 public interface OraColumnReference extends ColumnReference {
10     /** Returns, whether the column reference has the
11      * PRIOR attribute set. This attribute is required for
12      * the CONNECT BY clause.
13      * @see org.apache.ws.jaxme.sqls.oracle.OraSelectStatement#getConnectBy()
14      * @see #setPrior(boolean)
15      */

16     public boolean isPrior();
17     /** Sets, whether the column reference has the
18      * PRIOR attribute set. This attribute is required for
19      * the CONNECT BY clause.
20      * @see org.apache.ws.jaxme.sqls.oracle.OraSelectStatement#getConnectBy()
21      * @see #isPrior()
22      */

23     public void setPrior(boolean pPrior);
24 }
25
Popular Tags