/* Associate the list data model with a combo box and a list */
((ComboBox) frame.getWidget("Combo1")).setListDataModel(listModel);
((List) frame.getWidget("List1")).setListDataModel(listModel);
/* Initialize the console */
boldAttribute = new ConsoleAttribute();
boldAttribute.setBold(true);
/* Show the frame */
frame.show();
}