Exemple #1
0
 /** Copy Constructor. */
 public RepeatQtnsDef(RepeatQtnsDef repeatQtnsDef) {
   // setQtnDef(new QuestionDef(repeatQtnsDef.getQtnDef()));
   setQtnDef(repeatQtnsDef.getQtnDef());
   copyQuestions(repeatQtnsDef.getQuestions());
 }
Exemple #2
0
 /** 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;
 }