blob: c5d71bbc6fbc016abe1bf0d06579606aae8450e7 [file] [log] [blame]
/**
* Copyright (c) 2013 Mia-Software.
*
* 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:
* Gregoire Dupe (Mia-Software) - Bug 406578 - Generic Label Provider for EMF objects
*/
package org.eclipse.modisco.facet.util.emf.ui.internal;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.modisco.facet.util.emf.ui.internal.exported.IEmfLabelProviderFactory;
public class EmfLabelProviderFactory implements
IEmfLabelProviderFactory {
public ILabelProvider createLabelProvider() {
return new EmfLabelProvider();
}
}