Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eb919c7f9c3dd0975213dc9205dc7f903e38e92e (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
26
27
/**
 * 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 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * 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.jface.viewers.ILabelProvider;
import org.eclipse.papyrus.emf.facet.util.emf.ui.internal.EmfLabelProviderFactory;

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

	IEmfLabelProviderFactory DEFAULT = new EmfLabelProviderFactory();

	ILabelProvider createLabelProvider();
}

Back to the top