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.ActionDesc; 34 35 39 public class ConstraintFieldNameSubQuery extends ConstraintField { 40 41 public ActionDesc desc; 42 public String fieldName; 43 44 45 public ConstraintFieldNameSubQuery(String name, 46 ActionDesc desc) { 47 super(); 48 this.fieldName = name; 49 this.desc = desc; 50 } 51 52 } 53 | Popular Tags |