Skip to content
Snippets Groups Projects
Commit c5a1c9d1 authored by Katy Saintin's avatar Katy Saintin
Browse files

DataBrowser : JComboBox not generic in java 6

parent fe028492
Branches
Tags
No related merge requests found
......@@ -118,7 +118,7 @@ public class InformationViewer extends JPanel implements IDataBrowserItemListene
table.setSortOrder(Columns.PROPERTY, SortOrder.ASCENDING);
TableColumn dataTypeColumn = table.getColumnExt(Columns.VALUE);
final JComboBox<DataType> dataTypeCombo = new JComboBox<DataType>(new DataType[] { DataType.SPECTRUM, DataType.IMAGE });
final JComboBox dataTypeCombo = new JComboBox (new DataType[] { DataType.SPECTRUM, DataType.IMAGE });
dataTypeCombo.setEditable(false);
dataTypeColumn.setCellEditor(new DefaultCellEditor(dataTypeCombo));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment