/***************************************************************************** * 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: * Atos Origin - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.uml.diagram.activity.parser.custom; import java.util.ArrayList; import java.util.List; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EAttribute; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EStructuralFeature; import org.eclipse.gmf.runtime.emf.ui.services.parser.ISemanticParser; import org.eclipse.papyrus.uml.diagram.activity.parsers.MessageFormatParser; import org.eclipse.uml2.uml.Behavior; import org.eclipse.uml2.uml.CallBehaviorAction; import org.eclipse.uml2.uml.Element; import org.eclipse.uml2.uml.UMLPackage; /** * A specific parser for displaying the label of a CallBehaviorAction. This * parser refreshes the text displayed for the CallBehaviorAction. */ public class CallBehaviorActionParser extends MessageFormatParser implements ISemanticParser { /** the format for CallBehaviorAction label */ private static final String CALLBEHAVIORACTION_LABEL_FORMAT = "%s : %s"; public CallBehaviorActionParser(EAttribute[] features, EAttribute[] editableFeatures) { super(features, editableFeatures); } public CallBehaviorActionParser(EAttribute[] features) { super(features); } public CallBehaviorActionParser() { super(new EAttribute[]{ UMLPackage.eINSTANCE.getNamedElement_Name() }); } protected EStructuralFeature getEStructuralFeature(Object notification) { EStructuralFeature featureImpl = null; if(notification instanceof Notification) { Object feature = ((Notification)notification).getFeature(); if(feature instanceof EStructuralFeature) { featureImpl = (EStructuralFeature)feature; } } return featureImpl; } /* * (non-Javadoc) * * @see * org.eclipse.papyrus.uml.diagram.sequence.parsers.AbstractParser#isAffectingEvent * (java.lang.Object , int) */ public boolean isAffectingEvent(Object event, int flags) { EStructuralFeature feature = getEStructuralFeature(event); return isValidFeature(feature); } /* * (non-Javadoc) * * @see org.eclipse.papyrus.uml.diagram.sequence.parsers.MessageFormatParser# * getPrintString(org.eclipse .core.runtime.IAdaptable, int) */ public String getPrintString(IAdaptable element, int flags) { Object obj = element.getAdapter(EObject.class); if(obj instanceof CallBehaviorAction) { CallBehaviorAction action = (CallBehaviorAction)obj; String actionName = ""; if(action.getName() != null) { actionName = action.getName(); } String behaviorName = ""; if(action.getBehavior() != null && action.getBehavior().getName() != null) { behaviorName = action.getBehavior().getName(); } // display behavior name alone if name is not specified differently if("".equals(actionName) || actionName.equals(behaviorName)) { return behaviorName; } else { return String.format(CALLBEHAVIORACTION_LABEL_FORMAT, actionName, behaviorName); } } return " "; } /* * (non-Javadoc) * * @see org.eclipse.gmf.runtime.emf.ui.services.parser.ISemanticParser# * areSemanticElementsAffected (org.eclipse.emf.ecore.EObject, * java.lang.Object) */ public boolean areSemanticElementsAffected(EObject listener, Object notification) { EStructuralFeature feature = getEStructuralFeature(notification); return isValidFeature(feature); } /* * (non-Javadoc) * * @see org.eclipse.gmf.runtime.emf.ui.services.parser.ISemanticParser# * getSemanticElementsBeingParsed (org.eclipse.emf.ecore.EObject) */ public List<?> getSemanticElementsBeingParsed(EObject element) { List<Element> semanticElementsBeingParsed = new ArrayList<Element>(); if(element instanceof CallBehaviorAction) { CallBehaviorAction action = (CallBehaviorAction)element; semanticElementsBeingParsed.add(action); Behavior behavior = action.getBehavior(); if(behavior != null) { semanticElementsBeingParsed.add(behavior); } } return semanticElementsBeingParsed; } /** * Determines if the given feature has to be taken into account in this * parser * * @param feature * the feature to test * @return true if is valid, false otherwise */ private boolean isValidFeature(EStructuralFeature feature) { return UMLPackage.eINSTANCE.getNamedElement_Name().equals(feature) || UMLPackage.eINSTANCE.getCallBehaviorAction_Behavior().equals(feature); } }