use of org.obeonetwork.dsl.database.parts.IndexElementPropertiesEditionPart in project InformationSystem by ObeoNetwork.
the class IndexElementPropertiesEditionComponent method initPart.
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent#initPart(java.lang.Object, int, org.eclipse.emf.ecore.EObject,
* org.eclipse.emf.ecore.resource.ResourceSet)
*/
public void initPart(Object key, int kind, EObject elt, ResourceSet allResource) {
setInitializing(true);
if (editingPart != null && key == partKey) {
editingPart.setContext(elt, allResource);
final IndexElement indexElement = (IndexElement) elt;
final IndexElementPropertiesEditionPart indexElementPart = (IndexElementPropertiesEditionPart) editingPart;
// init values
if (isAccessible(DatabaseViewsRepository.IndexElement.Properties.column)) {
// init part
columnSettings = new EObjectFlatComboSettings(indexElement, DatabasePackage.eINSTANCE.getIndexElement_Column());
indexElementPart.initColumn(columnSettings);
// set the button mode
indexElementPart.setColumnButtonMode(ButtonsModeEnum.BROWSE);
}
if (isAccessible(DatabaseViewsRepository.IndexElement.Properties.asc)) {
indexElementPart.setAsc(indexElement.isAsc());
}
if (isAccessible(DatabaseViewsRepository.IndexElement.Properties.comments))
indexElementPart.setComments(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, indexElement.getComments()));
// init filters
if (isAccessible(DatabaseViewsRepository.IndexElement.Properties.column)) {
indexElementPart.addFilterToColumn(new ViewerFilter() {
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
*/
public boolean select(Viewer viewer, Object parentElement, Object element) {
// $NON-NLS-1$
return (element instanceof String && element.equals("")) || (element instanceof Column);
}
});
// Start of user code for additional businessfilters for column
// End of user code
}
// init values for referenced views
// init filters for referenced views
}
setInitializing(false);
}
Aggregations