blob: bc2efd4ac7a4f163e50d4c2511295ee513255f81 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.navigator;
import org.eclipse.jface.viewers.ILabelDecorator;
import org.eclipse.jface.viewers.ILabelProviderListener;
import org.eclipse.swt.graphics.Image;
/**
* @see ILabelDecorator
*/
public class HeavyNullTextDecorator implements ILabelDecorator {
/**
* Whether we should fail with an exception
*/
public static boolean fail = false;
/**
*
*/
public HeavyNullTextDecorator() {
}
/**
* @see ILabelDecorator#addListener
*/
public void addListener(ILabelProviderListener listener) {
}
/**
* @see ILabelDecorator#dispose
*/
public void dispose() {
}
/**
* @see ILabelDecorator#isLabelProperty
*/
public boolean isLabelProperty(Object element, String property) {
return false;
}
/**
* @see ILabelDecorator#removeListener
*/
public void removeListener(ILabelProviderListener listener) {
}
/**
* @see ILabelDecorator#decorateImage
*/
public Image decorateImage(Image image, Object element) {
return image;
}
/**
* @see ILabelDecorator#decorateText
*/
public String decorateText(String text, Object element) {
if (fail) {
fail = false;
throw new NullPointerException("Heavy text boom");
}
return null;
}
}