CellEditor cellEditor_1 = new TextCellEditor(tableViewer.getTable());
IValueProperty cellEditorProperty_1 = BeanProperties.value("value");
IBeanValueProperty valueProperty_1 = BeanProperties.value("type");
typeColumn.setEditingSupport(ObservableValueEditingSupport.create(tableViewer, bindingContext, cellEditor_1, cellEditorProperty_1, valueProperty_1));
//
CellEditor cellEditor_2 = new CheckboxCellEditor(tableViewer.getTable());
IValueProperty cellEditorProperty_2 = BeanProperties.value("value");
IBeanValueProperty valueProperty_2 = BeanProperties.value("copy");
copyColumn.setEditingSupport(ObservableValueEditingSupport.create(tableViewer, bindingContext, cellEditor_2, cellEditorProperty_2, valueProperty_2));
//
CellEditor parsingCombo = new ComboBoxCellEditor(tableViewer.getTable(), ToolParameter.PT_VALUES);