Exemplo n.º 1
0
  @Override
  public void initialize(final WidgetModel model) {
    super.initialize(model);

    final String[] items = model.getChoices();

    listButton = new ListButton();
    listButton.setListData(new ArrayList<String>(items));
    getComponent().add(listButton);

    refreshWidget();
  }