blob: 1d52c34339ae1f6de327097c6ea81fb032e9cad0 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2013, 2017 CEA LIST and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA LIST - Initial API and implementation
* Christian W. Damus (CEA) - bug 422257
*
*****************************************************************************/
package org.eclipse.papyrus.cdo.internal.ui.editors;
import org.eclipse.emf.cdo.dawn.editors.IDawnEditor;
import org.eclipse.emf.cdo.dawn.gmf.notifications.impl.DawnGMFLockingHandler;
import org.eclipse.emf.cdo.view.CDOViewLocksChangedEvent;
import org.eclipse.net4j.util.event.IEvent;
import org.eclipse.papyrus.cdo.internal.core.CDOUtils;
import org.eclipse.papyrus.cdo.internal.ui.util.UIUtil;
/**
* This is the PapyrusGMFLockingHandler type. Enjoy.
*/
public class PapyrusGMFLockingHandler extends DawnGMFLockingHandler {
public PapyrusGMFLockingHandler(IDawnEditor editor) {
super(editor);
}
@Override
public void handleLocksChangedEvent(CDOViewLocksChangedEvent event) {
if (UIUtil.ensureUIThread(this, event)) {
super.handleLocksChangedEvent(event);
}
}
@Override
public void handleEvent(IEvent event) {
try {
super.handleEvent(event);
} finally {
CDOUtils.removeListenerFromDeactivatedLifecycle(this, event);
}
}
}