blob: 732decb98716ac7c5ce344a0ea3fc946c3a3a963 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.core.internal.expressions.tests;
import org.eclipse.core.expressions.PropertyTester;
import org.eclipse.core.internal.expressions.Assert;
public class B_TypeExtender extends PropertyTester {
public boolean test(Object receiver, String method, Object[] args, Object expectedValue) {
if ("overridden".equals(method)) { //$NON-NLS-1$
return "B".equals(expectedValue); //$NON-NLS-1$
}
Assert.isTrue(false);
return false;
}
}