blob: 3da0db0e0cd6c4f4c7ff849238b54a848030934d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) 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
*******************************************************************************/
package org.eclipse.emf.parsley.tests.factories;
import org.eclipse.emf.parsley.tests.providers.CustomLibraryViewerContentProvider;
import org.eclipse.jface.viewers.IContentProvider;
import org.eclipse.ui.plugin.AbstractUIPlugin;
public final class CustomContentProviderLibraryModule extends
CustomLibraryModule {
public CustomContentProviderLibraryModule(AbstractUIPlugin plugin) {
super(plugin);
}
@Override
public Class<? extends IContentProvider> bindIContentProvider() {
return CustomLibraryViewerContentProvider.class;
}
}