blob: f0a3cec3a5abe2da2f79fa3533b7e2bc66ffbbb1 [file] [log] [blame]
/**
* Copyright (c) 2012 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 361794 - [Restructuring] New customization meta-model
* David Couvrand (Soft-Maint) - Bug 418418 - [Customization] Overlay icons not implemented
*/
package org.eclipse.emf.facet.custom.ui.internal;
import org.eclipse.emf.facet.custom.core.ICustomizationManager;
import org.eclipse.emf.facet.custom.ui.ICustomizedLabelProvider;
import org.eclipse.emf.facet.custom.ui.ICustomizedLabelProviderFactory;
public class CustomizedLabelProviderFactory implements
ICustomizedLabelProviderFactory {
public ICustomizedLabelProvider createCustomizedLabelProvider(
final ICustomizationManager customizationMgr) {
return new DecoratingCustomizedLabelProvider(
customizationMgr);
}
}