blob: 1c3dde3f19f198fa157777f756af862d7d0976d7 [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:
* Vincenzo Caselli - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.parsley.examples.cdo.treeform;
import org.eclipse.emf.parsley.examples.cdo.treeform.customizations.TreeformCDOResourceManager;
import org.eclipse.emf.parsley.resource.ResourceManager;
import org.eclipse.ui.plugin.AbstractUIPlugin;
public class TreeformGuiceModule extends EmfParsleyGuiceModuleGen {
public TreeformGuiceModule(AbstractUIPlugin plugin) {
super(plugin);
}
@Override
public Class<? extends ResourceManager> bindResourceManager() {
return TreeformCDOResourceManager.class;
}
}