Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1a4627694a3a76ba7d3326064491a40907cc5093 (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
/*
 * Copyright (c) 2009 Atos Origin
 * 
 * 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:
 *    Thibault Landre (Atos Origin) - initial API and implementation
 */

«REM»DOCUMENTATION: PapyrusGencode«ENDREM»
«REM»Overlaod only the method  handlenotificationEventBody«ENDREM»

«IMPORT 'http://www.eclipse.org/gmf/2009/GenModel'»
«EXTENSION xpt::diagram::ViewmapAttributesUtils»


«AROUND handleNotificationEventBody FOR gmfgen::GenLinkLabel-»
	Object feature = event.getFeature();
	«EXPAND xpt::diagram::editparts::Common::handleText FOR self-»
	
	«REM»START Papyrus Code«ENDREM»
	«IF elementIcon-»
		if(event.getNewValue() instanceof org.eclipse.emf.ecore.EAnnotation && org.eclipse.papyrus.infra.emf.appearance.helper.VisualInformationPapyrusConstants.DISPLAY_NAMELABELICON.equals(((org.eclipse.emf.ecore.EAnnotation)event.getNewValue()).getSource())){	
			refreshLabel();
		}
	«ENDIF-»
	«REM»End Papyrus Code«ENDREM»
		
	super.handleNotificationEvent(event);
«ENDAROUND»

Back to the top