KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > token > bitstringliteral


1 package com.daffodilwoods.daffodildb.server.sql99.token;
2
3 import java.util.*;
4
5 import com.daffodilwoods.daffodildb.server.serversystem.*;
6 import com.daffodilwoods.daffodildb.server.sql99.common.*;
7 import com.daffodilwoods.daffodildb.server.sql99.expression.*;
8 import com.daffodilwoods.daffodildb.server.sql99.expression.expressionprimary.*;
9 import com.daffodilwoods.daffodildb.server.sql99.utils.*;
10 import com.daffodilwoods.database.resource.*;
11
12 public class bitstringliteral implements com.daffodilwoods.daffodildb.utils.parser.StatementExecuter, generalliteral, nondelimitertoken, RowValueExpressionSuper {
13
14    public bitstringliteralrepresentation _bitstringliteralrepresentation0;
15    public brule _brule1;
16
17    public bitstringliteral() {
18    }
19
20    public Object JavaDoc run(Object JavaDoc object) throws DException {
21       return null;
22    }
23
24    public Object JavaDoc clone() throws CloneNotSupportedException JavaDoc {
25       bitstringliteral tempClass = new bitstringliteral();
26       tempClass._bitstringliteralrepresentation0 = (bitstringliteralrepresentation) _bitstringliteralrepresentation0.clone();
27       tempClass._brule1 = (brule) _brule1.clone();
28       return tempClass;
29    }
30
31    public String JavaDoc toString() {
32       StringBuffer JavaDoc sb = new StringBuffer JavaDoc();
33       sb.append(" ");
34       sb.append(_brule1);
35       sb.append("'");
36       sb.append(_bitstringliteralrepresentation0);
37       sb.append("'");
38       return sb.toString();
39    }
40
41    public Object JavaDoc getObject(_VariableValues variableValues) throws DException {
42       throw new UnsupportedOperationException JavaDoc();
43    }
44
45    public byte[][] getByte(_VariableValues variableValues) throws DException {
46       throw new UnsupportedOperationException JavaDoc();
47    }
48
49    public void setDefaultValues(_VariableValueOperations variableValueOperations) throws DException {
50       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
51       throw new java.lang.UnsupportedOperationException JavaDoc("Method setDefaultValues() not yet implemented.");
52    }
53
54    public boolean checkForSubQuery() throws DException {
55       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
56       throw new java.lang.UnsupportedOperationException JavaDoc("Method checkForSubQuery() not yet implemented.");
57    }
58
59    public _Reference[] getReferences(TableDetails[] tableDetails) throws DException {
60       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
61       throw new java.lang.UnsupportedOperationException JavaDoc("Method getReferences() not yet implemented.");
62    }
63
64    public ColumnDetails[] getColumnDetails() throws DException {
65       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
66       throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnDetails() not yet implemented.");
67    }
68
69    public _Reference[] checkSemantic(_ServerSession parent) throws DException {
70       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
71       throw new java.lang.UnsupportedOperationException JavaDoc("Method checkSemantic() not yet implemented.");
72    }
73
74    public int getCardinality() throws DException {
75       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
76       throw new java.lang.UnsupportedOperationException JavaDoc("Method getCardinality() not yet implemented.");
77    }
78
79    public ParameterInfo[] getParameterInfo() throws DException {
80       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
81       throw new java.lang.UnsupportedOperationException JavaDoc("Method getParameterInfo() not yet implemented.");
82    }
83
84    public void getColumnsIncluded(ArrayList aList) throws DException {
85       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
86       throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnsIncluded() not yet implemented.");
87    }
88
89    public void getTablesIncluded(ArrayList aList) throws DException {
90       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
91       throw new java.lang.UnsupportedOperationException JavaDoc("Method getTablesIncluded() not yet implemented.");
92    }
93
94    public ByteComparison getByteComparison(Object JavaDoc object) throws DException {
95       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
96       throw new java.lang.UnsupportedOperationException JavaDoc("Method getByteComparison() not yet implemented.");
97    }
98
99    public void releaseResource() throws DException {
100       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
101       throw new java.lang.UnsupportedOperationException JavaDoc("Method releaseResource() not yet implemented.");
102    }
103
104    public Object JavaDoc[] getParameters(Object JavaDoc object) throws DException {
105       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.common.Parameters method*/
106       throw new java.lang.UnsupportedOperationException JavaDoc("Method getParameters() not yet implemented.");
107    }
108
109    public int getType() {
110       return OTHERS;
111    }
112 }
113
Popular Tags