blob: 9baf1690bc1aae09b172ba0d175a06301780827e [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.engine.uml.debug.data.presentation;
import org.eclipse.papyrus.moka.engine.uml.debug.UMLDebugPlugin;
import org.eclipse.swt.graphics.Image;
public class SuspensionPointVariableLabelProvider extends UMLDebugLabelProvider {
public static final String SUSPEND_ICON = "resources/icons/suspend.gif";
@Override
public Image getImage(Object element) {
if(element != null){
return UMLDebugPlugin.getDefault().getImageRegistry().get(SUSPEND_ICON);
}
return null;
}
}