blob: e0fdfb7eed8a14ef7bda79c7ab4128fbdc73b61d [file] [log] [blame]
// FileExecutableAdapterFactory.java
package org.eclipse.stem.jobs.adapters.executable;
/*******************************************************************************
* Copyright (c) 2008 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
*******************************************************************************/
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.Platform;
import org.eclipse.stem.core.common.Identifiable;
import org.eclipse.stem.jobs.execution.IExecutable;
/**
* This class is an {@link ExecutableAdapterFactory} that adapts {@link IFile}s
* to {@link IExecutable}s.
*/
public class FileExecutableAdapterFactory extends ExecutableAdapterFactory {
/**
* @see org.eclipse.core.runtime.IAdapterFactory#getAdapter(java.lang.Object,
* java.lang.Class)
*/
public Object getAdapter(final Object adaptableObject,
final Class adapterType) {
IExecutable retValue = null;
// A File?
if (adaptableObject instanceof IFile
&& adapterType.equals(IExecutable.class)) {
// Yes
retValue = (IExecutable) Platform.getAdapterManager().getAdapter(
Platform.getAdapterManager().getAdapter(adaptableObject,
Identifiable.class), IExecutable.class);
} // if
return retValue;
} // getAdapter
} // FileExecutableAdapterFactory