blob: 0023aaa0ae7d3a5d26be090beefebadf77340873 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Mia-Software.
* 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:
* Nicolas Bros (Mia-Software) - initial API and implementation
*******************************************************************************/
package org.eclipse.gmt.modisco.infra.browser.uicore.internal.adapters;
import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmt.modisco.infra.browser.uicore.internal.model.ModelElementItem;
/**
* An Eclipse adapter factory used to adapt a {@link ModelElementItem} to the {@link EObject} it
* represents.
* @deprecated Will be replaced by EMF Facet,
* cf https://bugs.eclipse.org/bugs/show_bug.cgi?id=470715
*/
@Deprecated
public class AdapterFactory implements IAdapterFactory {
@SuppressWarnings("unchecked")
public Object getAdapter(final Object adaptableObject, final Class adapterType) {
if (adapterType == EObject.class) {
if (adaptableObject instanceof ModelElementItem) {
ModelElementItem modelElementItem = (ModelElementItem) adaptableObject;
return modelElementItem.getEObject();
}
}
return null;
}
public Class<?>[] getAdapterList() {
return new Class[] { EObject.class };
}
}