blob: 790f6a3d091f0172416b83c72edd725a8a3d3963 [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;
import org.eclipse.emf.parsley.EmfParsleyGuiceModule;
import org.eclipse.emf.parsley.builders.TableViewerColumnBuilder;
import org.eclipse.emf.parsley.builders.TableViewerEditableColumnBuilder;
import org.eclipse.ui.plugin.AbstractUIPlugin;
public class EmfParsleyExamplesModule extends EmfParsleyGuiceModule {
public EmfParsleyExamplesModule(AbstractUIPlugin plugin) {
super(plugin);
}
@Override
public Class<? extends TableViewerColumnBuilder> bindTableViewerColumnBuilder() {
return TableViewerEditableColumnBuilder.class;
}
}