KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > josql > internal > ColumnReference


1 /*
2  * Copyright 2004-2005 Gary Bentley
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may
5  * not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */

15 package org.josql.internal;
16
17 public class ColumnReference
18 {
19
20     private int index = -1;
21     private String JavaDoc name = null;
22
23     public void setName (String JavaDoc n)
24     {
25
26     this.name = n;
27
28     }
29
30     public String JavaDoc getName ()
31     {
32
33     return this.name;
34
35     }
36
37     public int getIndex ()
38     {
39
40     return this.index;
41
42     }
43
44     public void setIndex (int ind)
45     {
46
47     this.index = ind;
48
49     }
50
51 }
52
Popular Tags