blob: b82f860d060e688f0e3f8315c368d62700a5fe0d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.tests.viewers;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.swt.graphics.Image;
public class TestLabelProvider extends LabelProvider {
static Image fgImage = null;
/**
*
*/
public static Image getImage() {
if (fgImage == null)
fgImage = ImageDescriptor.createFromFile(TestLabelProvider.class,
"images/java.gif").createImage();
return fgImage;
}
public Image getImage(Object element) {
return getImage();
}
public String getText(Object element) {
String label = element.toString();
return label + " <rendered>";
}
}