blob: 714713af2ceee5dfd8d55cd6d8c5a20bbd955563 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2015 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 - Initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.runtime;
import org.eclipse.core.runtime.IAdapterFactory;
import org.junit.Assert;
/**
*/
public class TestAdapterFactory extends Assert implements IAdapterFactory {
@Override
public <T> T getAdapter(Object adaptableObject, Class<T> adapterType) {
assertTrue("Request for wrong adapter", adaptableObject instanceof TestAdaptable);
return adapterType.cast(new TestAdapter());
}
@Override
public Class<?>[] getAdapterList() {
return new Class[] {TestAdapter.class};
}
}