Exemple #1
0
 private QuestionaireTreeIterator(Questionaire data, QuestionaireTemplate structure, int depth, int qIndex, int aIndex)
 {
     this.data      = data;
     this.structure = structure;
     this.depth     = depth;
     this.qIndex    = qIndex;
     this.aIndex    = aIndex;
 }
Exemple #2
0
 public QuestionaireTreeIterator(Questionaire data, QuestionaireTemplate structure)
 {
     this.data      = data;
     this.structure = structure;
     this.depth     = 0;
     this.qIndex    = -1;
     this.aIndex    = -1;
 }