blob: 0d8c24ef2e588a99a89fe6aa6b3839f72d457b4c [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 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.decorators;
import junit.framework.Assert;
import org.eclipse.jface.viewers.IDecoration;
import org.eclipse.ui.tests.menus.ObjectContributionClasses;
/**
* Decorator for testing adaptability. This class is used to test
* the adaptable contribution. It can also be subclassed
* and the expected class and suffix can be customized
*/
public class TestAdaptableDecoratorContributor extends TestLightweightDecoratorContributor {
public static final String SUFFIX = "ICommon.1";
public static final String ID = "org.eclipse.ui.tests.decorators.generalAdaptabilityOn";
private Class clazz;
private String suffix;
public TestAdaptableDecoratorContributor() {
setExpectedElementType(ObjectContributionClasses.ICommon.class);
setSuffix(SUFFIX);
}
protected void setSuffix(String suffix) {
this.suffix = suffix;
}
protected void setExpectedElementType(Class clazz) {
this.clazz = clazz;
}
public void decorate(Object element, IDecoration decoration) {
Assert.assertTrue(clazz.isInstance(element));
decoration.addSuffix(suffix);
}
}