blob: 8c80ba515b1ea13d7958c017c37cc07026b6f682 [file] [log] [blame]
// FileIdentifiableAdapterFactory.java
package org.eclipse.stem.jobs.adapters.identifiable;
/*******************************************************************************
* 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.emf.common.util.URI;
import org.eclipse.stem.core.common.Identifiable;
/**
* This class is an {@link IAdapterFactory} that adapts {@link IFile}s to
* {@link Identifiable}s.
*/
public class FileIdentifiableAdapterFactory extends IdentifiableAdapterFactory {
/**
* @see org.eclipse.core.runtime.IAdapterFactory#getAdapter(java.lang.Object,
* java.lang.Class)
*/
public Object getAdapter(final Object adaptableObject,
final Class adapterType) {
Identifiable retValue = null;
if (adaptableObject instanceof IFile
&& adapterType.equals(Identifiable.class)) {
// Yes
retValue = (Identifiable) Platform.getAdapterManager().getAdapter(
URI.createFileURI(((IFile) adaptableObject).getLocation()
.toString()), Identifiable.class);
} // if
return retValue;
} // getAdapter
} // FileIdentifiableAdapterFactory