KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.daffodilwoods.daffodildb.server.sql99.utils;
2
3 import com.daffodilwoods.daffodildb.server.serversystem.*;
4 import com.daffodilwoods.daffodildb.server.sql99.dql.iterator.*;
5 import com.daffodilwoods.daffodildb.utils.field.*;
6 import com.daffodilwoods.database.resource.*;
7
8 public abstract class AbstractVariableValues implements _VariableValues {
9
10    public AbstractVariableValues() {
11    }
12
13    public Object JavaDoc getColumnValues(_Reference[] parm1) throws com.daffodilwoods.database.resource.DException {
14       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
15       throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnValues() not yet implemented.");
16    }
17
18    public Object JavaDoc getColumnValues(_Reference parm1) throws com.daffodilwoods.database.resource.DException {
19       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
20       throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnValues() not yet implemented.");
21    }
22
23    public void setIterator(_Iterator parm1) throws com.daffodilwoods.database.resource.DException {
24       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
25       throw new java.lang.UnsupportedOperationException JavaDoc("Method setIterator() not yet implemented.");
26    }
27
28    public void setConditionVariableValue(_Reference[] parm1, Object JavaDoc[] parm2, int parm3) throws com.daffodilwoods.database.resource.DException {
29       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
30       throw new java.lang.UnsupportedOperationException JavaDoc("Method setConditionVariableValue() not yet implemented.");
31    }
32
33    public void addReferences(_Reference[] parm1) throws com.daffodilwoods.database.resource.DException {
34       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
35       throw new java.lang.UnsupportedOperationException JavaDoc("Method addReferences() not yet implemented.");
36    }
37
38    public Object JavaDoc[][] getReferenceAndValuePair() throws com.daffodilwoods.database.resource.DException {
39       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
40       throw new java.lang.UnsupportedOperationException JavaDoc("Method getReferenceAndValuePair() not yet implemented.");
41    }
42
43    public void releaseResource() throws DException {
44       throw new java.lang.UnsupportedOperationException JavaDoc("Method releaseResource() not yet implemented.");
45    }
46
47    public FieldBase field(_Reference parm1) throws com.daffodilwoods.database.resource.DException {
48       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
49       throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnValues() not yet implemented.");
50    }
51
52    public _ServerSession getServerSession() throws DException {
53       throw new java.lang.UnsupportedOperationException JavaDoc("Method getServerSession() not yet implemented.");
54    }
55
56 }
57
Popular Tags