componentItem = new ImageDropDownItem(componentTextImage, COMPONENT_TEXT, COMPONENT_TEXT);
ImageDropDownItem[] items = new ImageDropDownItem[]{
textItem, componentItem
};
imageDropDown = new ImageDropDown(this, SWT.NONE, items);
imageDropDown.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent selectionEvent) {
updateBrowseButtonEnabledState();
}
});