blob: 2c016473ac8ef6dd4de386d404ee7a19db7ed0c5 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.authoring.ui.providers;
import org.eclipse.emf.common.notify.AdapterFactory;
import org.eclipse.emf.common.ui.viewer.IViewerProvider;
import org.eclipse.emf.edit.ui.provider.AdapterFactoryContentProvider;
import org.eclipse.jface.viewers.Viewer;
/**
* @author Phong Nguyen Le
* @since 1.0
*/
public class ExposedAdapterFactoryContentProvider extends
AdapterFactoryContentProvider implements IViewerProvider {
/**
* @param adapterFactory
*/
public ExposedAdapterFactoryContentProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
public Viewer getViewer() {
return viewer;
}
}