Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 853eaa092b7a1ee569bdc942e3f8676ee19366bf (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
28
29
30
31
32
33
34
35
36
37
38
39
/*****************************************************************************
 * Copyright (c) 2013 CEA LIST.
 *
 *
 * 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:
 *  Ansgar Radermacher  ansgar.radermacher@cea.fr
 *
 *****************************************************************************/

package org.eclipse.papyrus.qompass.designer.ui.dialogs;

import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.papyrus.FCM.ContainerRule;

/**
 * Return a label for ContainerRules. Since the name of the rule itself, is not
 * really interesting for the user, the returned name is based on the interceptor
 * (or extension)
 *
 * @author ansgar
 *
 */
public class RuleLabelProvider extends LabelProvider {

	@Override
	public String getText(Object element) {
		if (element instanceof ContainerRule) {
			ContainerRule rule = (ContainerRule) element;
			// TODO? Add information about contained parts?
			return rule.getBase_Class().getName();
		}
		return null;
	}
};

Back to the top