blob: ef6b190301bea65c6826f9ee55e1a0832d0108ab [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2015 CEA LIST.
*
*
* 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
*
*****************************************************************************/
package org.eclipse.papyrus.moka.animation.presentation.control;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.papyrus.moka.animation.AnimationPlugin;
import org.eclipse.swt.graphics.Image;
public class RootLabelProvider extends LabelProvider {
public static final String ROOT_ICON = "icons/observe_icon.png";
protected static final String ROOT_NAME = "Animated Diagrams";
@Override
public String getText(Object element) {
return ROOT_NAME;
}
@Override
public Image getImage(Object element) {
return AnimationPlugin.getDefault().getImageRegistry().get(ROOT_ICON);
}
}