Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cfae5166ae5bafcf8d536709aa6282a47be58ef8 (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
/**
 * 
 */
package org.eclipse.emf.parsley.examples.library;


import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.parsley.ui.provider.PropertyDescriptionProvider;

/**
 * @author bettini
 * 
 */
public class CustomFeatureLabelProvider extends PropertyDescriptionProvider {

	public String text_Person_firstName(EStructuralFeature f) {
		return "First name";
	}

	public String text_Person_lastName(EStructuralFeature f) {
		return "Surname";
	}
}

Back to the top