return translatePage(survey);
}
public String[][] changePage(String surveyProvider, int toPage) {
Survey survey = getSurvey(surveyProvider);
survey.goToPage(toPage);
return translatePage(survey);
}
private boolean isAnswerToSet(String id, String answer) {
return id != null && answer != null;