Search in sources :

Example 1 with NativeTypePropertiesEditionPart

use of org.obeonetwork.dsl.typeslibrary.parts.NativeTypePropertiesEditionPart in project InformationSystem by ObeoNetwork.

the class NativeTypePropertiesEditionComponent 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 NativeType nativeType = (NativeType) elt;
        final NativeTypePropertiesEditionPart nativeTypePart = (NativeTypePropertiesEditionPart) editingPart;
        // init values
        if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.name))
            nativeTypePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, nativeType.getName()));
        if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.spec)) {
            nativeTypePart.initSpec(EEFUtils.choiceOfValues(nativeType, TypesLibraryPackage.eINSTANCE.getNativeType_Spec()), nativeType.getSpec());
        }
        if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.mapsTo)) {
            // init part
            mapsToSettings = new EObjectFlatComboSettings(nativeType, TypesLibraryPackage.eINSTANCE.getNativeType_MapsTo());
            nativeTypePart.initMapsTo(mapsToSettings);
            // set the button mode
            nativeTypePart.setMapsToButtonMode(ButtonsModeEnum.BROWSE);
        }
        if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.mapsTo)) {
            nativeTypePart.addFilterToMapsTo(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 NativeType);
                }
            });
        // Start of user code for additional businessfilters for mapsTo
        // End of user code
        }
    // init values for referenced views
    // init filters for referenced views
    }
    setInitializing(false);
}
Also used : ViewerFilter(org.eclipse.jface.viewers.ViewerFilter) NativeTypePropertiesEditionPart(org.obeonetwork.dsl.typeslibrary.parts.NativeTypePropertiesEditionPart) NativeType(org.obeonetwork.dsl.typeslibrary.NativeType) Viewer(org.eclipse.jface.viewers.Viewer) EObject(org.eclipse.emf.ecore.EObject) EObjectFlatComboSettings(org.eclipse.emf.eef.runtime.ui.widgets.eobjflatcombo.EObjectFlatComboSettings)

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 NativeType (org.obeonetwork.dsl.typeslibrary.NativeType)1 NativeTypePropertiesEditionPart (org.obeonetwork.dsl.typeslibrary.parts.NativeTypePropertiesEditionPart)1