blob: 469a846de3ac524c56f136699447860c15202ca5 [file] [log] [blame]
// IdentifiableAdapterFactory.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.runtime.IAdapterFactory;
import org.eclipse.stem.core.common.Identifiable;
/**
* This class is an {@link IAdapterFactory} that adapts {@link Object}s to
* {@link Identifiable}s.
*/
abstract public class IdentifiableAdapterFactory implements IAdapterFactory {
/**
* @see org.eclipse.core.runtime.IAdapterFactory#getAdapterList()
*/
public Class[] getAdapterList() {
return new Class[] { Identifiable.class };
}
} // IdentifiableAdapterFactory