Search in sources :

Example 1 with NativeTypesLibraryPropertiesEditionPart

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

the class NativeTypesLibraryPropertiesEditionComponent 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 NativeTypesLibrary nativeTypesLibrary = (NativeTypesLibrary) elt;
        final NativeTypesLibraryPropertiesEditionPart nativeTypesLibraryPart = (NativeTypesLibraryPropertiesEditionPart) editingPart;
        // init values
        if (isAccessible(TypeslibraryViewsRepository.NativeTypesLibrary.Properties.name))
            nativeTypesLibraryPart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, nativeTypesLibrary.getName()));
        if (isAccessible(TypeslibraryViewsRepository.NativeTypesLibrary.Properties.nativeTypes)) {
            nativeTypesSettings = new ReferencesTableSettings(nativeTypesLibrary, TypesLibraryPackage.eINSTANCE.getNativeTypesLibrary_NativeTypes());
            nativeTypesLibraryPart.initNativeTypes(nativeTypesSettings);
        }
        if (isAccessible(TypeslibraryViewsRepository.NativeTypesLibrary.Properties.nativeTypes)) {
            nativeTypesLibraryPart.addFilterToNativeTypes(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 nativeTypes
        // End of user code
        }
    // init values for referenced views
    // init filters for referenced views
    }
    setInitializing(false);
}
Also used : ReferencesTableSettings(org.eclipse.emf.eef.runtime.ui.widgets.referencestable.ReferencesTableSettings) ViewerFilter(org.eclipse.jface.viewers.ViewerFilter) NativeTypesLibrary(org.obeonetwork.dsl.typeslibrary.NativeTypesLibrary) NativeTypesLibraryPropertiesEditionPart(org.obeonetwork.dsl.typeslibrary.parts.NativeTypesLibraryPropertiesEditionPart) NativeType(org.obeonetwork.dsl.typeslibrary.NativeType) Viewer(org.eclipse.jface.viewers.Viewer) EObject(org.eclipse.emf.ecore.EObject)

Aggregations

EObject (org.eclipse.emf.ecore.EObject)1 ReferencesTableSettings (org.eclipse.emf.eef.runtime.ui.widgets.referencestable.ReferencesTableSettings)1 Viewer (org.eclipse.jface.viewers.Viewer)1 ViewerFilter (org.eclipse.jface.viewers.ViewerFilter)1 NativeType (org.obeonetwork.dsl.typeslibrary.NativeType)1 NativeTypesLibrary (org.obeonetwork.dsl.typeslibrary.NativeTypesLibrary)1 NativeTypesLibraryPropertiesEditionPart (org.obeonetwork.dsl.typeslibrary.parts.NativeTypesLibraryPropertiesEditionPart)1