blob: 5354600ded3ac76a41b59095183ef3fd87177434 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.moka.debug.model.data.presentations.providers;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.papyrus.moka.debug.model.data.mapping.variables.MokaVariableAdapter;
import org.eclipse.papyrus.moka.debug.model.data.presentations.MokaDebugLabelProvider;
import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.IFeatureValue;
import org.eclipse.swt.graphics.Image;
public class FeatureValueVariableLabelProvider extends MokaDebugLabelProvider {
@Override
public Image getImage(Object element) {
if(element != null){
MokaVariableAdapter<?> variableAdapter = (MokaVariableAdapter<?>) element;
IFeatureValue featureValue = (IFeatureValue) variableAdapter.getAdapted();
ILabelProvider provider = this.getPapyrusLabelProvider(featureValue.getFeature());
if(provider != null) {
return provider.getImage(featureValue.getFeature());
}
}
return null;
}
}