blob: 9ec8f638f2f4a71b84f870270f7e50493c6d7d34 [file] [log] [blame]
// IdentifiableExecutableAdapterFactory.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.stem.core.common.Identifiable;
import org.eclipse.stem.jobs.execution.IExecutable;
/**
* This class is an {@link ExecutableAdapterFactory} that adapts
* {@link Identifiable}s to {@link IExecutable}s.
* <p>
* This class serves as a "bridge" between the Eclipse {@link IAdapterManager}
* and
* {@link org.eclipse.stem.jobs.adapters.executable.emf.ExecutableAdapterFactory}
* which is the EMF {@link Adapter} implementation that adapts
* {@link Identifiable}s to {@link IExecutable}s.
*
* @see org.eclipse.stem.jobs.adapters.executable.emf.ExecutableAdapter
* @see org.eclipse.stem.jobs.adapters.executable.emf.ScenarioExecutableAdapterFactory
* @see org.eclipse.stem.jobs.adapters.executable.emf.ExperimentExecutableAdapterFactory
*/
public class IdentifiableExecutableAdapterFactory 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;
// It it what we're looking for?
if (adaptableObject instanceof Identifiable
&& adapterType.equals(IExecutable.class)) {
// Yes
retValue = (IExecutable) org.eclipse.stem.jobs.adapters.executable.emf.ExecutableAdapterFactory.INSTANCE
.adapt(adaptableObject, IExecutable.class);
} // if
return retValue;
} // getAdapter
} // IdentifiableExecutableAdapterFactory