blob: 5661a9311ad4a871afd10b9f468d5c7dc0069b82 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2012 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Eike Stepper - initial API and implementation
* Jonas Helming - JavaDoc
*******************************************************************************/
package org.eclipse.emf.ecp.spi.core.util;
/**
* @author Eike Stepper
* @since 1.1
*/
public interface AdapterProvider {
<T> T getAdapter(Object adaptable, Class<T> adapterType);
}