1 23 24 30 package com.sun.jdo.spi.persistence.support.sqlstore.sql.generator; 31 32 import org.netbeans.modules.dbschema.ColumnElement; 33 34 39 public class InputParamValue extends InputValue 40 { 41 47 public InputParamValue(Integer index, ColumnElement columnElement) { 48 super(index, columnElement); 49 } 50 51 public Integer getParamIndex() { 52 return (Integer ) getValue(); 53 } 54 } 55 | Popular Tags |