1 23 24 25 26 package com.sun.jdo.spi.persistence.support.ejb.ejbqlc; 27 28 35 public class IdentificationVariable 36 { 37 38 private String name; 39 40 41 private Object typeInfo; 42 43 49 public IdentificationVariable(String name, Object typeInfo) 50 { 51 this.name = name; 52 this.typeInfo = typeInfo; 53 } 54 55 59 public String getName() 60 { 61 return name; 62 } 63 64 68 public Object getTypeInfo() 69 { 70 return typeInfo; 71 } 72 73 } 74 | Popular Tags |