Search in sources :

Example 1 with IndexElementPropertiesEditionPart

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);
}
Also used : IndexElementPropertiesEditionPart(org.obeonetwork.dsl.database.parts.IndexElementPropertiesEditionPart) ViewerFilter(org.eclipse.jface.viewers.ViewerFilter) Column(org.obeonetwork.dsl.database.Column) Viewer(org.eclipse.jface.viewers.Viewer) EObject(org.eclipse.emf.ecore.EObject) EObjectFlatComboSettings(org.eclipse.emf.eef.runtime.ui.widgets.eobjflatcombo.EObjectFlatComboSettings) IndexElement(org.obeonetwork.dsl.database.IndexElement)

Aggregations

EObject (org.eclipse.emf.ecore.EObject)1 EObjectFlatComboSettings (org.eclipse.emf.eef.runtime.ui.widgets.eobjflatcombo.EObjectFlatComboSettings)1 Viewer (org.eclipse.jface.viewers.Viewer)1 ViewerFilter (org.eclipse.jface.viewers.ViewerFilter)1 Column (org.obeonetwork.dsl.database.Column)1 IndexElement (org.obeonetwork.dsl.database.IndexElement)1 IndexElementPropertiesEditionPart (org.obeonetwork.dsl.database.parts.IndexElementPropertiesEditionPart)1