Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1cd30d9787c9e8d0764b6d06bc9a097817ce2d50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * 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.papyrus.emf.facet.util.emf.ui.internal.exported;

import org.eclipse.papyrus.emf.facet.util.emf.ui.internal.EmfLabelProviderFactory;
import org.eclipse.jface.viewers.ILabelProvider;

/**
 * @since 0.4
 */
public interface IEmfLabelProviderFactory {

	IEmfLabelProviderFactory DEFAULT = new EmfLabelProviderFactory();

	ILabelProvider createLabelProvider();
}

Back to the top