}
private void initTable(RowEditorModel rowModel) {
DeviceComboBox box = new DeviceComboBox();
ComboBoxCellEditor cellEditor = new ComboBoxCellEditor(box);
box.addDeviceClass("Scan");
box.addDeviceClass("ScanServer");
rowModel.addEditorForRow(0, cellEditor);
box = new DeviceComboBox();
box.addDeviceClass("DataFitter");
cellEditor = new ComboBoxCellEditor(box);
rowModel.addEditorForRow(1, cellEditor);
// box = new DeviceComboBox();
// box.addDeviceClass("DataRecorder");
// cellEditor = new ComboBoxCellEditor(box);
// rowModel.addEditorForRow(2, cellEditor);
BooleanComboBox booleanCombo = new BooleanComboBox();
box.addDeviceClass("DataRecorder");
cellEditor = new ComboBoxCellEditor(booleanCombo);
rowModel.addEditorForRow(2, cellEditor);
box = new DeviceComboBox();
box.addDeviceClass("BeamLine");
cellEditor = new ComboBoxCellEditor(box);
rowModel.addEditorForRow(3, cellEditor);
box = new DeviceComboBox();
box.addDeviceClass("RefreshingTime");
cellEditor = new ComboBoxCellEditor(box);
rowModel.addEditorForRow(4, cellEditor);
box = new DeviceComboBox();
box.addDeviceClass("Control Panel");
cellEditor = new ComboBoxCellEditor(box);
rowModel.addEditorForRow(6, cellEditor);
}