/** Copy Constructor. */ public RepeatQtnsDef(RepeatQtnsDef repeatQtnsDef) { // setQtnDef(new QuestionDef(repeatQtnsDef.getQtnDef())); setQtnDef(repeatQtnsDef.getQtnDef()); copyQuestions(repeatQtnsDef.getQuestions()); }
/** This copies the current repeat question def with the given parent */ public RepeatQtnsDef copy(QuestionDef parent) { RepeatQtnsDef retVal = new RepeatQtnsDef(this); retVal.setQtnDef(parent); return null; }