}
}
else {
Iterator<?> iterator = handle.getListProperty("selectionList").iterator();
while (iterator.hasNext()) {
SelectionChoice selectionChoice = (SelectionChoice) iterator.next();
LabelValueBean bean = new LabelValueBean(selectionChoice.getLabel(), selectionChoice.getValue());
v.add(bean);
}
}
options = new LabelValueBean[v.size()];