private final Button btnDeleteChildren;
private final Button btnDeleteFromTypeDesignation;
private final Button btnDeleteMolecularData;
+ private final Button btnDeleteIndividualsassociationsfactual;
/**
* Create the composite.
btnDeleteMolecularData = new Button(this, SWT.CHECK);
btnDeleteMolecularData.setText("Delete molecular data");
+
+ btnDeleteIndividualsassociationsfactual = new Button(this, SWT.CHECK);
+ btnDeleteIndividualsassociationsfactual.setText("Delete from factual data");
m_bindingContext = initDataBindings();
}
-
protected DataBindingContext initDataBindings() {
DataBindingContext bindingContext = new DataBindingContext();
//
IObservableValue deleteMolecularDataConfiguratorObserveValue = PojoProperties.value("deleteMolecularData").observe(configurator);
bindingContext.bindValue(observeSelectionBtnDeleteMolecularDataObserveWidget, deleteMolecularDataConfiguratorObserveValue, null, null);
//
+ IObservableValue observeSelectionBtnDeleteIndividualsassociationsfactualObserveWidget = WidgetProperties.selection().observe(btnDeleteIndividualsassociationsfactual);
+ IObservableValue deleteFromIndividualsAssociationConfiguratorObserveValue = PojoProperties.value("deleteFromIndividualsAssociation").observe(configurator);
+ bindingContext.bindValue(observeSelectionBtnDeleteIndividualsassociationsfactualObserveWidget, deleteFromIndividualsAssociationConfiguratorObserveValue, null, null);
+ //
return bindingContext;
}
}