Search in sources :

Example 1 with InteractionParentSelectionLabelProvider

use of org.obeonetwork.dsl.interaction.design.ui.extension.providers.InteractionParentSelectionLabelProvider in project InformationSystem by ObeoNetwork.

the class InteractionServices method changeParentForInteraction.

/**
 * Change the parent of an interaction with a selected one
 * @param interaction
 * @return
 */
public Interaction changeParentForInteraction(final Interaction interaction) {
    Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
    AdapterFactory adapterFactory = new ComposedAdapterFactory(ComposedAdapterFactory.Descriptor.Registry.INSTANCE);
    InteractionParentSelectionLabelProvider labelProvider = new InteractionParentSelectionLabelProvider(adapterFactory);
    InteractionParentSelectionContentProvider contentProvider = new InteractionParentSelectionContentProvider(adapterFactory);
    ElementTreeSelectionDialog dlg = new ElementTreeSelectionDialog(shell, labelProvider, contentProvider);
    dlg.setHelpAvailable(false);
    dlg.setValidator(new ISelectionStatusValidator() {

        public IStatus validate(Object[] selection) {
            Object selectedObject = selection[0];
            if (selectedObject instanceof EObject) {
                IPermissionAuthority authority = PermissionAuthorityRegistry.getDefault().getPermissionAuthority((EObject) selectedObject);
                if (authority != null) {
                    LockStatus lockStatus = authority.getLockStatus((EObject) selectedObject);
                    if (LockStatus.LOCKED_BY_OTHER.equals(lockStatus)) {
                        return new Status(IStatus.ERROR, Activator.PLUGIN_ID, "This element is locked by another user");
                    }
                }
            }
            return new Status(IStatus.OK, Activator.PLUGIN_ID, "");
        }
    });
    dlg.setTitle("Change interaction's parent");
    dlg.setMessage("Select the new parent for the interaction");
    Session session = SessionManager.INSTANCE.getSession(interaction);
    if (session == null) {
        return interaction;
    }
    dlg.setInput(session.getSemanticResources().toArray());
    dlg.setInitialSelection(interaction.eContainer());
    int btn = dlg.open();
    if (btn == Dialog.OK) {
        Object selectedElement = dlg.getFirstResult();
        if (selectedElement instanceof ObeoDSMObject && selectedElement != interaction.eContainer()) {
            // Change the parent
            ((ObeoDSMObject) selectedElement).getBehaviours().add(interaction);
        }
    }
    return interaction;
}
Also used : IStatus(org.eclipse.core.runtime.IStatus) Status(org.eclipse.core.runtime.Status) LockStatus(org.eclipse.sirius.ecore.extender.business.api.permission.LockStatus) IPermissionAuthority(org.eclipse.sirius.ecore.extender.business.api.permission.IPermissionAuthority) IStatus(org.eclipse.core.runtime.IStatus) LockStatus(org.eclipse.sirius.ecore.extender.business.api.permission.LockStatus) ComposedAdapterFactory(org.eclipse.emf.edit.provider.ComposedAdapterFactory) InteractionParentSelectionLabelProvider(org.obeonetwork.dsl.interaction.design.ui.extension.providers.InteractionParentSelectionLabelProvider) ElementTreeSelectionDialog(org.eclipse.ui.dialogs.ElementTreeSelectionDialog) Shell(org.eclipse.swt.widgets.Shell) InteractionParentSelectionContentProvider(org.obeonetwork.dsl.interaction.design.ui.extension.providers.InteractionParentSelectionContentProvider) AdapterFactory(org.eclipse.emf.common.notify.AdapterFactory) ComposedAdapterFactory(org.eclipse.emf.edit.provider.ComposedAdapterFactory) EObject(org.eclipse.emf.ecore.EObject) ObeoDSMObject(org.obeonetwork.dsl.environment.ObeoDSMObject) ISelectionStatusValidator(org.eclipse.ui.dialogs.ISelectionStatusValidator) EObject(org.eclipse.emf.ecore.EObject) ObeoDSMObject(org.obeonetwork.dsl.environment.ObeoDSMObject) Session(org.eclipse.sirius.business.api.session.Session)

Aggregations

IStatus (org.eclipse.core.runtime.IStatus)1 Status (org.eclipse.core.runtime.Status)1 AdapterFactory (org.eclipse.emf.common.notify.AdapterFactory)1 EObject (org.eclipse.emf.ecore.EObject)1 ComposedAdapterFactory (org.eclipse.emf.edit.provider.ComposedAdapterFactory)1 Session (org.eclipse.sirius.business.api.session.Session)1 IPermissionAuthority (org.eclipse.sirius.ecore.extender.business.api.permission.IPermissionAuthority)1 LockStatus (org.eclipse.sirius.ecore.extender.business.api.permission.LockStatus)1 Shell (org.eclipse.swt.widgets.Shell)1 ElementTreeSelectionDialog (org.eclipse.ui.dialogs.ElementTreeSelectionDialog)1 ISelectionStatusValidator (org.eclipse.ui.dialogs.ISelectionStatusValidator)1 ObeoDSMObject (org.obeonetwork.dsl.environment.ObeoDSMObject)1 InteractionParentSelectionContentProvider (org.obeonetwork.dsl.interaction.design.ui.extension.providers.InteractionParentSelectionContentProvider)1 InteractionParentSelectionLabelProvider (org.obeonetwork.dsl.interaction.design.ui.extension.providers.InteractionParentSelectionLabelProvider)1