blob: 78231d007399026ebe10440a8c39b10085960106 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 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.ui.tests.decorators;
import org.eclipse.jface.viewers.ILabelDecorator;
import org.eclipse.jface.viewers.ILabelProviderListener;
import org.eclipse.swt.graphics.Image;
import org.eclipse.ui.tests.internal.ForcedException;
/**
* @see ILabelDecorator
*/
public class HeavyNullImageDecorator implements ILabelDecorator {
/**
* Whether we should fail with an exception
*/
public static boolean fail = false;
/**
*
*/
public HeavyNullImageDecorator() {
}
/**
* @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) {
if (fail) {
fail = false;
throw new ForcedException("Heavy image decorator boom");
}
return null;
}
/**
* @see ILabelDecorator#decorateText
*/
public String decorateText(String text, Object element) {
return text;
}
}