1 23 24 30 31 package com.sun.jdo.spi.persistence.support.sqlstore.sql.generator; 32 33 35 public class TableIndex extends Object { 36 private int index; 37 38 public TableIndex(int index) { 39 this.index = index; 40 } 41 42 public int intValue() { 43 return index; 44 } 45 46 public String toString() { 47 return Integer.toString(index); 48 } 49 50 public void setValue(int index) { 51 this.index = index; 52 } 53 } 54 | Popular Tags |