173174175176177178179
super(); this.pcClass = pcClass; this.config = config; fields = new ArrayList(); constraint = new Constraint(); }
844845846847848849850851852853854
public Object clone() { try { RetrieveDescImpl clone = (RetrieveDescImpl) super.clone(); clone.fields = new ArrayList(); clone.constraint = new Constraint(); return clone; } catch (CloneNotSupportedException e) { // // shouldn't happen.
177178179180181182183
848849850851852853854855856857858