blob: 16a8f230ddd73c35d7ebfd73b2061fb82ea51dcc [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.examples.mail.mailsview;
import org.eclipse.emf.parsley.EmfParsleyGuiceModule;
import org.eclipse.emf.parsley.examples.mail.mailsview.ui.provider.FeaturesProviderGen;
import org.eclipse.emf.parsley.ui.provider.FeaturesProvider;
import org.eclipse.ui.plugin.AbstractUIPlugin;
/**
* org.eclipse.emf.parsley.examples.mail.mailsview Emf Parsley Dsl Module file
*/
@SuppressWarnings("all")
public class EmfParsleyGuiceModuleGen extends EmfParsleyGuiceModule {
public EmfParsleyGuiceModuleGen(final AbstractUIPlugin plugin) {
super(plugin);
}
@Override
public Class<? extends FeaturesProvider> bindFeaturesProvider() {
return FeaturesProviderGen.class;
}
}