blob: 043862ab2326f6ff4ffeae176e7009c7dee8c7f6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Oakland Software Incorporated 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:
* Oakland Software Incorporated - initial API and implementation
******************************************************************************/
package org.eclipse.ui.tests.navigator.extension;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.widgets.Display;
/**
* @since 3.3
*
*/
public class TestLabelProviderBlue extends TestLabelProvider {
public static Color backgroundColor = Display.getCurrent().getSystemColor(
SWT.COLOR_BLUE);
public static Color getTestColor() {
return backgroundColor;
}
public Color getBackground(Object element) {
return backgroundColor;
}
public String getColorName() {
return "Blue";
}
}