blob: e4261681eff6644de1abb3153cd1457901216ff9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 SAP AG 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:
* SAP AG - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jee.ui.internal.navigator;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jdt.core.IJavaElement;
public class DDAdapterFactory implements IAdapterFactory {
public Object getAdapter(Object adaptableObject, Class adapterType) {
if (adapterType == IJavaElement.class) {
if (adaptableObject instanceof AbstractDDNode) {
AbstractDDNode ddNode = (AbstractDDNode) adaptableObject;
Object node = ddNode.getAdapterNode();
if (node instanceof IJavaElement)
return node;
if (node instanceof IAdaptable)
return ((IAdaptable) node).getAdapter(IJavaElement.class);
return Platform.getAdapterManager().getAdapter(node, IJavaElement.class);
}
}
return null;
}
public Class[] getAdapterList() {
return new Class[] { IJavaElement.class };
}
}