1 15 package org.josql.internal; 16 17 public class ColumnReference 18 { 19 20 private int index = -1; 21 private String name = null; 22 23 public void setName (String n) 24 { 25 26 this.name = n; 27 28 } 29 30 public String 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 |