use of com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint.Constraint in project Payara by payara.
the class RetrieveDescImpl method clone.
public Object clone() {
try {
RetrieveDescImpl clone = (RetrieveDescImpl) super.clone();
clone.fields = new ArrayList();
clone.constraint = new Constraint();
return clone;
} catch (CloneNotSupportedException e) {
//
return null;
}
}
Aggregations