blob: afb02912e222ee194d4fc911188f521ceaace884 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2015 IBM Corporation 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
*******************************************************************************/
package org.eclipse.pde.api.tools.ui.internal;
import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.ui.IActionFilter;
/**
* API Tools UI adapter factory
*/
class ActionFilterAdapterFactory implements IAdapterFactory {
/**
* @see IAdapterFactory#getAdapter(Object, Class)
*/
@Override
@SuppressWarnings("unchecked")
public <T> T getAdapter(Object obj, Class<T> adapterType) {
if (adapterType == IActionFilter.class) {
if (obj instanceof IJavaElement) {
return (T) new JavaElementActionFilter();
}
}
return null;
}
/**
* @see IAdapterFactory#getAdapterList()
*/
@Override
public Class<?>[] getAdapterList() {
return new Class[] { IActionFilter.class };
}
}