menu = new JComboBox(options);
} else {
// get the list of options from the sourceURL
menu = new JComboBox();
try {
menu.setModel(new OptionDataSource(sourceURL,this.name));
} catch(MalformedURLException ex) {
errorMessage(Messages.getString("SelectFieldParameter.2")+sourceURL); //$NON-NLS-1$
LOG.error(Messages.getString("SelectFieldParameter.3")+sourceURL,ex); //$NON-NLS-1$
} catch (IOException ex) {
errorMessage(Messages.getString("SelectFieldParameter.4")+sourceURL); //$NON-NLS-1$