blob: df776cf33668bda182beef4c290728d10c99e73e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jaxb.core.internal;
import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jpt.jaxb.core.platform.JaxbPlatformDescription;
/**
* Factory to build Dali adapters for an {@link IJavaElement}:<ul>
* <li>{@link JaxbPlatformDescription}
* </ul>
* See <code>org.eclipse.jpt.jaxb.core/plugin.xml</code>.
*/
public class JavaElementAdapterFactory
implements IAdapterFactory
{
private static final Class<?>[] ADAPTER_LIST = new Class[] {
JaxbPlatformDescription.class
};
public Class<?>[] getAdapterList() {
return ADAPTER_LIST;
}
public Object getAdapter(Object adaptableObject, @SuppressWarnings("rawtypes") Class adapterType) {
if (adaptableObject instanceof IJavaElement) {
return this.getAdapter((IJavaElement) adaptableObject, adapterType);
}
return null;
}
private Object getAdapter(IJavaElement javaElement, Class<?> adapterType) {
if (adapterType == JaxbPlatformDescription.class) {
return javaElement.getResource().getAdapter(JaxbPlatformDescription.class);
}
return null;
}
}