/** * Set the FormIndex for the current question. * * @param index */ public void setQuestionIndex(FormIndex index) { if (!currentFormIndex.Equals(index)) { // See if a hint exists that says we should have a model for this // already createModelIfNecessary(index); currentFormIndex = index; } }