blob: d476e565652d5a47aa85bc9995d68d2596485fba [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2016 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.utils;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.PlatformObject;
/**
* Provides utilities for working with adaptable and non-adaptable objects.
*
* @since 2.0
*/
public class AdaptUtils {
/**
* <p>
* Returns an adapter of the requested type (anAdapterType)
*
* @param anElement
* The element to adapt, which may or may not implement
* {@link IAdaptable}, or null
* @param anAdapterType
* The class type to return
* @return An adapter of the requested type or null
*/
@SuppressWarnings("unchecked")
public static <T> T getAdapter(Object anElement, Class<T> anAdapterType) {
Assert.isNotNull(anAdapterType);
if (anElement == null) {
return null;
}
if (anAdapterType.isInstance(anElement)) {
return (T) anElement;
}
if (anElement instanceof IAdaptable) {
final IAdaptable adaptable = (IAdaptable) anElement;
T result = adaptable.getAdapter(anAdapterType);
if (result != null) {
// Sanity-check
Assert.isTrue(anAdapterType.isInstance(result));
return result;
}
}
if (!(anElement instanceof PlatformObject)) {
T result = Platform.getAdapterManager().getAdapter(anElement,
anAdapterType);
if (result != null) {
return result;
}
}
return null;
}
}