1 23 24 29 30 package com.sun.jdo.spi.persistence.utility; 31 32 public class ParameterInfo 34 { 35 39 private final int index; 40 41 42 private final int type; 43 44 51 private final String associatedField; 52 53 54 public ParameterInfo(int index, int type) 55 { 56 this(index, type, null); 57 } 58 59 66 public ParameterInfo(int index, int type, String associatedField) 67 { 68 this.index = index; 69 this.type = type; 70 this.associatedField = associatedField; 71 } 72 73 74 public int getIndex() 75 { 76 return index; 77 } 78 79 80 public int getType() 81 { 82 return type; 83 } 84 85 88 public String getAssociatedField() 89 { 90 return associatedField; 91 } 92 } 93 | Popular Tags |