1 23 24 30 31 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint; 32 33 import com.sun.jdo.spi.persistence.support.sqlstore.model.LocalFieldDesc; 34 35 40 public class ConstraintParamIndex extends ConstraintValue 41 { 42 43 48 int enumType; 49 50 56 public ConstraintParamIndex(int index, int enumType, LocalFieldDesc localField) { 57 super(new Integer (index), localField); 58 this.enumType = enumType; 59 } 60 61 64 public int getType() { 65 return enumType; 66 } 67 68 public Integer getIndex() { 69 return (Integer ) getValue(); 70 } 71 72 } 73 | Popular Tags |