blob: ecacf3ecc493162e2dbf03bc2dd2b4e121e53d13 [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
*
* Contributors:
* Lorenzo Bettini - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.parsley.examples.views;
import org.eclipse.emf.parsley.EmfParsleyGuiceModule;
import org.eclipse.emf.parsley.viewers.TableViewerColumnBuilder;
import org.eclipse.emf.parsley.viewers.TableViewerEditableColumnBuilder;
import org.eclipse.ui.plugin.AbstractUIPlugin;
public class EmfParsleyExamplesViewsModule extends EmfParsleyGuiceModule {
public EmfParsleyExamplesViewsModule(AbstractUIPlugin plugin) {
super(plugin);
}
@Override
public Class<? extends TableViewerColumnBuilder> bindTableViewerColumnBuilder() {
return TableViewerEditableColumnBuilder.class;
}
}