blob: dc78d7474a9a0be7c3fb113ea39b7b09464257f6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2010 IBM Corporation, SpringSource 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
* Helen Hawkins - initital version
* Andrew Eisenberg - implements IAdaptable
*******************************************************************************/
package org.eclipse.contribution.xref.ui.tests.views;
import org.eclipse.core.runtime.IAdaptable;
/**
* @author hawkinsh
*
*/
public class TestXRefClass implements IAdaptable {
public TestXRefClass() {
}
public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) {
return null;
}
}