blob: 0c0da3d4709b17299ff5dff2e41232155187a2ac [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.papyrus.moka.debug.MokaDebugPlugin;
import org.eclipse.papyrus.moka.debug.model.data.presentations.MokaDebugLabelProvider;
import org.eclipse.swt.graphics.Image;
public class EventPoolVariableLabelProvider extends MokaDebugLabelProvider{
public final static String EVENT_POOL_ICON = "resources/icons/event_pool.gif";
@Override
public Image getImage(Object element) {
if(element != null){
return MokaDebugPlugin.getDefault().getImageRegistry().get(EVENT_POOL_ICON);
}
return null;
}
}