if (provider instanceof Provider) {
String[] choices = ((Provider) provider).getValue();
valueSelection.setSelection(choices, property.getValue());
valueSelection.orientVertical();
if (choices.length > 15) {
setChild(new Scrollbox(valueSelection));
} else {
setChild(valueSelection);
}
return;
}