KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > utils > BaseExceptionSingleIterator


1 package com.daffodilwoods.daffodildb.server.sql99.utils;
2
3 import com.daffodilwoods.daffodildb.server.sql99.dql.execution._OrderCount;
4
5 import com.daffodilwoods.daffodildb.server.sql99.dql.iterator._Iterator;
6
7 import com.daffodilwoods.daffodildb.server.sql99.dql.listenerevents.ColumnMapping;
8
9 import com.daffodilwoods.database.resource.DException;
10 import com.daffodilwoods.daffodildb.server.sql99.common.TableDetails;
11 import com.daffodilwoods.daffodildb.server.datasystem.utility._Record;
12 import com.daffodilwoods.daffodildb.server.sql99.common.ColumnDetails;
13 import com.daffodilwoods.database.sqlinitiator._Order;
14 import com.daffodilwoods.daffodildb.client._ExecutionPlan;
15 import com.daffodilwoods.daffodildb.server.sql99.common.ExecutionPlanForBrowser;
16 import com.daffodilwoods.daffodildb.server.sql99.common._KeyColumnInformation;
17 import com.daffodilwoods.daffodildb.utils.field.FieldBase;
18 public class BaseExceptionSingleIterator implements _Iterator {
19
20   public Object JavaDoc[][] getFunctionalColumnMapping() throws DException {
21     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
22     throw new java.lang.UnsupportedOperationException JavaDoc("Method getFunctionalColumnMapping() not yet implemented.");
23   }
24   public void setKeyCount(Object JavaDoc[][] tableAndKeyCount) throws DException {
25   /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
26   throw new java.lang.UnsupportedOperationException JavaDoc("Method setKeyCount() not yet implemented.");
27 }
28
29   public _OrderCount getOrderCounts() throws DException {
30     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
31     throw new java.lang.UnsupportedOperationException JavaDoc("Method getOrderCounts() not yet implemented.");
32   }
33   public TableDetails[] getTableDetails() throws DException {
34     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
35     throw new java.lang.UnsupportedOperationException JavaDoc("Method getTableDetails() not yet implemented.");
36   }
37   public _Iterator getBaseIterator(ColumnDetails column) throws DException {
38     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
39     throw new java.lang.UnsupportedOperationException JavaDoc("Method getBaseIterator() not yet implemented.");
40   }
41   public _Iterator getBaseIteratorHasRecord(ColumnDetails hasRecordColumn) throws DException {
42     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
43     throw new java.lang.UnsupportedOperationException JavaDoc("Method getBaseIterator() not yet implemented.");
44   }
45   public _Order getDefaultOrder() throws DException {
46     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
47     throw new java.lang.UnsupportedOperationException JavaDoc("Method getDefaultOrder() not yet implemented.");
48   }
49   public _ExecutionPlan getExecutionPlan() throws DException {
50     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
51     throw new java.lang.UnsupportedOperationException JavaDoc("Method getExecutionPlan() not yet implemented.");
52   }
53   public ExecutionPlanForBrowser getExecutionPlanForBrowser() throws DException {
54     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
55     throw new java.lang.UnsupportedOperationException JavaDoc("Method getExecutionPlanForBrowser() not yet implemented.");
56   }
57   public Object JavaDoc getColumnValues(_Reference[] reference) throws DException {
58     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._BaseVariableValues method*/
59     throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnValues() not yet implemented.");
60   }
61   public Object JavaDoc getColumnValues(_Reference reference) throws DException {
62     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._BaseVariableValues method*/
63     throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnValues() not yet implemented.");
64   }
65   public void setConditionVariableValue(_Reference[] references, Object JavaDoc[] values, int priority) throws DException {
66     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._BaseVariableValues method*/
67     throw new java.lang.UnsupportedOperationException JavaDoc("Method setConditionVariableValue() not yet implemented.");
68   }
69   public boolean seekFromTop(_IndexPredicate[] condition) throws DException {
70     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._SqlIndexIterator method*/
71     throw new java.lang.UnsupportedOperationException JavaDoc("Method seekFromTop() not yet implemented.");
72   }
73   public boolean seekFromTopRelative(Object JavaDoc indexKey) throws DException {
74     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._SqlIndexIterator method*/
75     throw new java.lang.UnsupportedOperationException JavaDoc("Method seekFromTopRelative() not yet implemented.");
76   }
77   public boolean seekFromBottom(_IndexPredicate[] condition) throws DException {
78     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._SqlIndexIterator method*/
79     throw new java.lang.UnsupportedOperationException JavaDoc("Method seekFromBottom() not yet implemented.");
80   }
81   public boolean seekFromBottomRelative(Object JavaDoc indexKey) throws DException {
82     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._SqlIndexIterator method*/
83     throw new java.lang.UnsupportedOperationException JavaDoc("Method seekFromBottomRelative() not yet implemented.");
84   }
85   public _KeyColumnInformation[] getKeyColumnInformations() throws DException {
86     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._SqlIndexIterator method*/
87     throw new java.lang.UnsupportedOperationException JavaDoc("Method getKeyColumnInformations() not yet implemented.");
88   }
89   public Object JavaDoc[] getUniqueColumnReference() throws DException {
90     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._SqlIndexIterator method*/
91     throw new java.lang.UnsupportedOperationException JavaDoc("Method getUniqueColumnReference() not yet implemented.");
92   }
93   public boolean seek(Object JavaDoc indexKey) throws DException {
94     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._SqlIndexIterator method*/
95     throw new java.lang.UnsupportedOperationException JavaDoc("Method seek() not yet implemented.");
96   }
97   public boolean first() throws DException {
98     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._Navigator method*/
99     throw new java.lang.UnsupportedOperationException JavaDoc("Method first() not yet implemented.");
100   }
101   public boolean last() throws DException {
102     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._Navigator method*/
103     throw new java.lang.UnsupportedOperationException JavaDoc("Method last() not yet implemented.");
104   }
105   public boolean next() throws DException {
106     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._Navigator method*/
107     throw new java.lang.UnsupportedOperationException JavaDoc("Method next() not yet implemented.");
108   }
109   public boolean previous() throws DException {
110     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._Navigator method*/
111     throw new java.lang.UnsupportedOperationException JavaDoc("Method previous() not yet implemented.");
112   }
113   public Object JavaDoc getKey() throws DException {
114     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._Navigator method*/
115     throw new java.lang.UnsupportedOperationException JavaDoc("Method getKey() not yet implemented.");
116   }
117   public void move(Object JavaDoc key) throws DException {
118     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._Navigator method*/
119     throw new java.lang.UnsupportedOperationException JavaDoc("Method move() not yet implemented.");
120   }
121   public _Record getRecord() throws DException {
122     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._Navigator method*/
123     throw new java.lang.UnsupportedOperationException JavaDoc("Method getRecord() not yet implemented.");
124   }
125   public Object JavaDoc getColumnValues() throws DException {
126     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._Navigator method*/
127     throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnValues() not yet implemented.");
128   }
129   public Object JavaDoc getColumnValues(int[] columns) throws DException {
130     /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._Navigator method*/
131     throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnValues() not yet implemented.");
132   }
133     public FieldBase field(_Reference reference) throws com.daffodilwoods.database.resource.DException {
134         throw new java.lang.UnsupportedOperationException JavaDoc("Method not yet implemented.");
135     }
136     public FieldBase[] fields(_Reference[] references) throws com.daffodilwoods.database.resource.DException {
137         throw new java.lang.UnsupportedOperationException JavaDoc("Method fields() not yet implemented.");
138     }
139     public FieldBase[] fields(int[] columns) throws com.daffodilwoods.database.resource.DException {
140         throw new java.lang.UnsupportedOperationException JavaDoc("Method fields() not yet implemented.");
141     }
142   public void releaseResource() throws DException {
143
144   }
145   public byte[] getByteKey() throws DException {
146     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.iterator._Iterator method*/
147     throw new java.lang.UnsupportedOperationException JavaDoc("Method getByteKey() not yet implemented.");
148   }
149   public void moveByteKey(byte[] key) throws DException {
150     /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.iterator._Iterator method*/
151     throw new java.lang.UnsupportedOperationException JavaDoc("Method moveByteKey() not yet implemented.");
152   }
153   public void setSpecificUnderlyingReferences(_Reference[] specificUnderlyingReferences) throws DException{
154     throw new java.lang.UnsupportedOperationException JavaDoc("Method setSpecificUnderlyingReferences() not yet implemented.");
155   }
156
157 }
158
Popular Tags