blob: a5af67af9dd21ca2d04dff52d0f18f6d4d6a1b76 [file] [log] [blame]
/**
* Copyright (c) 2007-2010 Thales Corporate Services S.A.S.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Thales Corporate Services S.A.S - initial API and implementation
*/
package org.eclipse.egf.common.ui.actions;
import org.eclipse.egf.common.helper.EMFHelper;
import org.eclipse.egf.common.ui.EGFCommonUIPlugin;
import org.eclipse.egf.common.ui.ICommonUIImages;
import org.eclipse.egf.common.ui.l10n.EGFCommonUIMessages;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
/**
* @author Xavier Maysonnave
*
*/
public class CopyEObjectStaticMetaClassQualifiedNameAction extends CopyQualifiedNameAction {
private EObject _eObject;
public CopyEObjectStaticMetaClassQualifiedNameAction() {
super(EGFCommonUIMessages.CopyEObjectStaticMetaClassQualifiedName_name, EGFCommonUIPlugin.getDefault().getImageDescriptor(ICommonUIImages.ECORE_IMAGE_PATH));
}
@Override
public void selectionChanged(IAction action, ISelection selection) {
_eObject = null;
if (selection instanceof IStructuredSelection) {
_eObject = getSelection((IStructuredSelection) selection);
}
}
@Override
public URI getURI() {
if (_eObject == null) {
return null;
}
return EcoreUtil.getURI(EMFHelper.solveAgainstStaticPackage(_eObject instanceof EClassifier ? (EClassifier) _eObject : _eObject.eClass()));
}
}