/***************************************************************************** * Copyright (c) 2010 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: * Patrick Tessier (CEA LIST) Patrick.tessier@cea.fr - Initial API and implementation */ package org.eclipse.papyrus.uml.diagram.clazz.edit.policies; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Set; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.draw2d.geometry.Dimension; import org.eclipse.draw2d.geometry.Point; import org.eclipse.draw2d.geometry.Rectangle; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EStructuralFeature; import org.eclipse.gef.EditPart; import org.eclipse.gef.commands.Command; import org.eclipse.gmf.runtime.diagram.core.util.ViewUtil; import org.eclipse.gmf.runtime.diagram.ui.commands.DeferredLayoutCommand; import org.eclipse.gmf.runtime.diagram.ui.commands.ICommandProxy; import org.eclipse.gmf.runtime.diagram.ui.commands.SetBoundsCommand; import org.eclipse.gmf.runtime.diagram.ui.commands.SetViewMutabilityCommand; import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart; import org.eclipse.gmf.runtime.diagram.ui.editpolicies.CanonicalEditPolicy; import org.eclipse.gmf.runtime.diagram.ui.l10n.DiagramUIMessages; import org.eclipse.gmf.runtime.diagram.ui.requests.CreateConnectionViewRequest; import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; import org.eclipse.gmf.runtime.diagram.ui.requests.RequestConstants; import org.eclipse.gmf.runtime.emf.commands.core.command.CompositeTransactionalCommand; import org.eclipse.gmf.runtime.emf.core.util.EObjectAdapter; import org.eclipse.gmf.runtime.notation.Bounds; import org.eclipse.gmf.runtime.notation.Diagram; import org.eclipse.gmf.runtime.notation.Edge; import org.eclipse.gmf.runtime.notation.Location; import org.eclipse.gmf.runtime.notation.Node; import org.eclipse.gmf.runtime.notation.Size; import org.eclipse.gmf.runtime.notation.View; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.AbstractionEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.AssociationBranchEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.AssociationClassDashedLinkEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.AssociationClassEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.AssociationClassLinkEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.AssociationEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.AssociationNodeEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ClassEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ClassEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.CommentEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.CommentEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ComponentEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ComponentEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ConstraintEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ConstraintEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ContainmentLinkEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ContainmentSubLinkEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.DataTypeEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.DataTypeEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.DefaultNamedElementEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.DependencyBranchEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.DependencyEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.DependencyNodeEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.DurationObservationEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ElementImportEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.EnumerationEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.EnumerationEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.GeneralizationEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.GeneralizationSetEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.InformationFlowEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.InformationItemEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.InformationItemEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.InstanceSpecificationEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.InstanceSpecificationEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.InstanceSpecificationLinkEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.InterfaceEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.InterfaceEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.InterfaceRealizationEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ModelEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ModelEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ModelEditPartTN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PackageEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PackageEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PackageImportEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PackageMergeEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PrimitiveTypeEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.PrimitiveTypeEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ProfileApplicationEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.RealizationEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.RedefinableTemplateSignatureEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ShapeNamedElementEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.ShortCutDiagramEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.SignalEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.SignalEditPartCN; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.SubstitutionEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.TemplateBindingEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.TemplateSignatureEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.TimeObservationEditPart; import org.eclipse.papyrus.uml.diagram.clazz.edit.parts.UsageEditPart; import org.eclipse.papyrus.uml.diagram.clazz.part.UMLDiagramUpdater; import org.eclipse.papyrus.uml.diagram.clazz.part.UMLLinkDescriptor; import org.eclipse.papyrus.uml.diagram.clazz.part.UMLNodeDescriptor; import org.eclipse.papyrus.uml.diagram.clazz.part.UMLVisualIDRegistry; import org.eclipse.uml2.uml.UMLPackage; /** * @generated */ public class ModelCanonicalEditPolicy extends CanonicalEditPolicy { /** * @generated */ private Set<EStructuralFeature> myFeaturesToSynchronize; /** * @generated */ protected void refreshOnActivate() { // Need to activate editpart children before invoking the canonical refresh for EditParts to add event listeners List<?> c = getHost().getChildren(); for(int i = 0; i < c.size(); i++) { ((EditPart)c.get(i)).activate(); } super.refreshOnActivate(); } /** * @generated */ protected Set getFeaturesToSynchronize() { if(myFeaturesToSynchronize == null) { myFeaturesToSynchronize = new HashSet<EStructuralFeature>(); myFeaturesToSynchronize.add(UMLPackage.eINSTANCE.getPackage_PackagedElement()); myFeaturesToSynchronize.add(UMLPackage.eINSTANCE.getElement_OwnedComment()); } return myFeaturesToSynchronize; } /** * @generated */ @SuppressWarnings("rawtypes") protected List getSemanticChildrenList() { View viewObject = (View)getHost().getModel(); LinkedList<EObject> result = new LinkedList<EObject>(); List<UMLNodeDescriptor> childDescriptors = UMLDiagramUpdater.getPackage_1000SemanticChildren(viewObject); for(UMLNodeDescriptor d : childDescriptors) { result.add(d.getModelElement()); } return result; } /** * @generated */ protected boolean isOrphaned(Collection<EObject> semanticChildren, final View view) { return isMyDiagramElement(view) && !semanticChildren.contains(view.getElement()); } /** * @generated */ private boolean isMyDiagramElement(View view) { int visualID = UMLVisualIDRegistry.getVisualID(view); switch(visualID) { case DependencyNodeEditPart.VISUAL_ID: case AssociationClassEditPart.VISUAL_ID: case AssociationNodeEditPart.VISUAL_ID: case InstanceSpecificationEditPart.VISUAL_ID: case ComponentEditPart.VISUAL_ID: case SignalEditPart.VISUAL_ID: case InterfaceEditPart.VISUAL_ID: case ModelEditPartTN.VISUAL_ID: case EnumerationEditPart.VISUAL_ID: case PackageEditPart.VISUAL_ID: case InformationItemEditPart.VISUAL_ID: case ClassEditPart.VISUAL_ID: case PrimitiveTypeEditPart.VISUAL_ID: case DataTypeEditPart.VISUAL_ID: case ConstraintEditPart.VISUAL_ID: case CommentEditPart.VISUAL_ID: case ShortCutDiagramEditPart.VISUAL_ID: case DurationObservationEditPart.VISUAL_ID: case TimeObservationEditPart.VISUAL_ID: case DefaultNamedElementEditPart.VISUAL_ID: case ShapeNamedElementEditPart.VISUAL_ID: return true; } return false; } /** * @generated */ protected void refreshSemantic() { if(resolveSemanticElement() == null) { return; } LinkedList<IAdaptable> createdViews = new LinkedList<IAdaptable>(); List<UMLNodeDescriptor> childDescriptors = UMLDiagramUpdater.getPackage_1000SemanticChildren((View)getHost().getModel()); LinkedList<View> orphaned = new LinkedList<View>(); // we care to check only views we recognize as ours LinkedList<View> knownViewChildren = new LinkedList<View>(); for(View v : getViewChildren()) { if(isMyDiagramElement(v)) { knownViewChildren.add(v); } } // alternative to #cleanCanonicalSemanticChildren(getViewChildren(), semanticChildren) HashMap<UMLNodeDescriptor, LinkedList<View>> potentialViews = new HashMap<UMLNodeDescriptor, LinkedList<View>>(); // // iteration happens over list of desired semantic elements, trying to find best matching View, while original CEP // iterates views, potentially losing view (size/bounds) information - i.e. if there are few views to reference same EObject, only last one // to answer isOrphaned == true will be used for the domain element representation, see #cleanCanonicalSemanticChildren() for(Iterator<UMLNodeDescriptor> descriptorsIterator = childDescriptors.iterator(); descriptorsIterator.hasNext();) { UMLNodeDescriptor next = descriptorsIterator.next(); String hint = UMLVisualIDRegistry.getType(next.getVisualID()); LinkedList<View> perfectMatch = new LinkedList<View>(); // both semanticElement and hint match that of NodeDescriptor LinkedList<View> potentialMatch = new LinkedList<View>(); // semanticElement matches, hint does not for(View childView : getViewChildren()) { EObject semanticElement = childView.getElement(); if(next.getModelElement().equals(semanticElement)) { if(hint.equals(childView.getType())) { perfectMatch.add(childView); // actually, can stop iteration over view children here, but // may want to use not the first view but last one as a 'real' match (the way original CEP does // with its trick with viewToSemanticMap inside #cleanCanonicalSemanticChildren } else { potentialMatch.add(childView); } } } if(perfectMatch.size() > 0) { descriptorsIterator.remove(); // precise match found no need to create anything for the NodeDescriptor // use only one view (first or last?), keep rest as orphaned for further consideration knownViewChildren.remove(perfectMatch.getFirst()); } else if(potentialMatch.size() > 0) { potentialViews.put(next, potentialMatch); } } // those left in knownViewChildren are subject to removal - they are our diagram elements we didn't find match to, // or those we have potential matches to, and thus need to be recreated, preserving size/location information. orphaned.addAll(knownViewChildren); // CompositeTransactionalCommand boundsCommand = new CompositeTransactionalCommand(host().getEditingDomain(), DiagramUIMessages.SetLocationCommand_Label_Resize); ArrayList<CreateViewRequest.ViewDescriptor> viewDescriptors = new ArrayList<CreateViewRequest.ViewDescriptor>(childDescriptors.size()); for(UMLNodeDescriptor next : childDescriptors) { String hint = UMLVisualIDRegistry.getType(next.getVisualID()); IAdaptable elementAdapter = new CanonicalElementAdapter(next.getModelElement(), hint); CreateViewRequest.ViewDescriptor descriptor = new CreateViewRequest.ViewDescriptor(elementAdapter, Node.class, hint, ViewUtil.APPEND, false, host().getDiagramPreferencesHint()); viewDescriptors.add(descriptor); LinkedList<View> possibleMatches = potentialViews.get(next); if(possibleMatches != null) { // from potential matches, leave those that were not eventually used for some other NodeDescriptor (i.e. those left as orphaned) possibleMatches.retainAll(knownViewChildren); } if(possibleMatches != null && !possibleMatches.isEmpty()) { View originalView = possibleMatches.getFirst(); knownViewChildren.remove(originalView); // remove not to copy properties of the same view again and again // add command to copy properties if(originalView instanceof Node) { if(((Node)originalView).getLayoutConstraint() instanceof Bounds) { Bounds b = (Bounds)((Node)originalView).getLayoutConstraint(); boundsCommand.add(new SetBoundsCommand(boundsCommand.getEditingDomain(), boundsCommand.getLabel(), descriptor, new Rectangle(b.getX(), b.getY(), b.getWidth(), b.getHeight()))); } else if(((Node)originalView).getLayoutConstraint() instanceof Location) { Location l = (Location)((Node)originalView).getLayoutConstraint(); boundsCommand.add(new SetBoundsCommand(boundsCommand.getEditingDomain(), boundsCommand.getLabel(), descriptor, new Point(l.getX(), l.getY()))); } else if(((Node)originalView).getLayoutConstraint() instanceof Size) { Size s = (Size)((Node)originalView).getLayoutConstraint(); boundsCommand.add(new SetBoundsCommand(boundsCommand.getEditingDomain(), boundsCommand.getLabel(), descriptor, new Dimension(s.getWidth(), s.getHeight()))); } } } } boolean changed = deleteViews(orphaned.iterator()); // CreateViewRequest request = getCreateViewRequest(viewDescriptors); Command cmd = getCreateViewCommand(request); if(cmd != null && cmd.canExecute()) { SetViewMutabilityCommand.makeMutable(new EObjectAdapter(host().getNotationView())).execute(); executeCommand(cmd); if(boundsCommand.canExecute()) { executeCommand(new ICommandProxy(boundsCommand.reduce())); } @SuppressWarnings("unchecked") List<IAdaptable> nl = (List<IAdaptable>)request.getNewObject(); createdViews.addAll(nl); } if(changed || createdViews.size() > 0) { postProcessRefreshSemantic(createdViews); } Collection<IAdaptable> createdConnectionViews = refreshConnections(); if(createdViews.size() > 1) { // perform a layout of the container DeferredLayoutCommand layoutCmd = new DeferredLayoutCommand(host().getEditingDomain(), createdViews, host()); executeCommand(new ICommandProxy(layoutCmd)); } createdViews.addAll(createdConnectionViews); makeViewsImmutable(createdViews); } /** * @generated */ private Collection<IAdaptable> refreshConnections() { Map<EObject, View> domain2NotationMap = new HashMap<EObject, View>(); Collection<UMLLinkDescriptor> linkDescriptors = collectAllLinks(getDiagram(), domain2NotationMap); Collection existingLinks = new LinkedList(getDiagram().getEdges()); for(Iterator linksIterator = existingLinks.iterator(); linksIterator.hasNext();) { Edge nextDiagramLink = (Edge)linksIterator.next(); int diagramLinkVisualID = UMLVisualIDRegistry.getVisualID(nextDiagramLink); if(diagramLinkVisualID == -1 || diagramLinkVisualID == AssociationClassDashedLinkEditPart.VISUAL_ID || diagramLinkVisualID == ContainmentSubLinkEditPart.VISUAL_ID || diagramLinkVisualID == ContainmentLinkEditPart.VISUAL_ID) { if(nextDiagramLink.getSource() != null && nextDiagramLink.getTarget() != null) { linksIterator.remove(); } continue; } EObject diagramLinkObject = nextDiagramLink.getElement(); EObject diagramLinkSrc = nextDiagramLink.getSource().getElement(); EObject diagramLinkDst = nextDiagramLink.getTarget().getElement(); for(Iterator<UMLLinkDescriptor> linkDescriptorsIterator = linkDescriptors.iterator(); linkDescriptorsIterator.hasNext();) { UMLLinkDescriptor nextLinkDescriptor = linkDescriptorsIterator.next(); if(diagramLinkObject == nextLinkDescriptor.getModelElement() && diagramLinkSrc == nextLinkDescriptor.getSource() && diagramLinkDst == nextLinkDescriptor.getDestination() && diagramLinkVisualID == nextLinkDescriptor.getVisualID()) { linksIterator.remove(); linkDescriptorsIterator.remove(); break; } } } deleteViews(existingLinks.iterator()); return createConnections(linkDescriptors, domain2NotationMap); } /** * @generated */ private Collection<UMLLinkDescriptor> collectAllLinks(View view, Map<EObject, View> domain2NotationMap) { if(!ModelEditPart.MODEL_ID.equals(UMLVisualIDRegistry.getModelID(view))) { return Collections.emptyList(); } LinkedList<UMLLinkDescriptor> result = new LinkedList<UMLLinkDescriptor>(); switch(UMLVisualIDRegistry.getVisualID(view)) { case ModelEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getPackage_1000ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case DependencyNodeEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getDependency_2014ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case AssociationClassEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getAssociationClass_2013ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case AssociationNodeEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getAssociation_2015ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case InstanceSpecificationEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getInstanceSpecification_2001ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ComponentEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getComponent_2002ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case SignalEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getSignal_2003ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case InterfaceEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getInterface_2004ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ModelEditPartTN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getModel_2005ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case EnumerationEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getEnumeration_2006ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case PackageEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getPackage_2007ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case InformationItemEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getInformationItem_2099ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ClassEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getClass_2008ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case PrimitiveTypeEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getPrimitiveType_2009ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case DataTypeEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getDataType_2010ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ConstraintEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getConstraint_2011ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case CommentEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getComment_2012ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ShortCutDiagramEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getDiagram_2016ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case DurationObservationEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getDurationObservation_2095ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case TimeObservationEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getTimeObservation_2096ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case DefaultNamedElementEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getNamedElement_2097ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ShapeNamedElementEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getNamedElement_2098ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case RedefinableTemplateSignatureEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getRedefinableTemplateSignature_3015ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case TemplateSignatureEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getTemplateSignature_3033ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case InstanceSpecificationEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getInstanceSpecification_3020ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ComponentEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getComponent_3021ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case SignalEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getSignal_3022ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case InterfaceEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getInterface_3023ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ModelEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getModel_3024ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case EnumerationEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getEnumeration_3025ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case PackageEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getPackage_3009ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case InformationItemEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getInformationItem_3040ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ClassEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getClass_3010ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case PrimitiveTypeEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getPrimitiveType_3026ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case DataTypeEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getDataType_3027ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case CommentEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getComment_3028ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ConstraintEditPartCN.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getConstraint_3029ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case AssociationClassLinkEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getAssociationClass_4017ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case AssociationEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getAssociation_4001ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case AssociationBranchEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getAssociation_4019ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case GeneralizationEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getGeneralization_4002ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case InterfaceRealizationEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getInterfaceRealization_4003ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case SubstitutionEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getSubstitution_4004ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case RealizationEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getRealization_4005ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case AbstractionEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getAbstraction_4006ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case UsageEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getUsage_4007ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case DependencyEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getDependency_4008ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case DependencyBranchEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getDependency_4018ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ElementImportEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getElementImport_4009ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case PackageImportEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getPackageImport_4010ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case PackageMergeEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getPackageMerge_4011ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case ProfileApplicationEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getProfileApplication_4012ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case TemplateBindingEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getTemplateBinding_4015ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case GeneralizationSetEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getGeneralizationSet_4020ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case InstanceSpecificationLinkEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getInstanceSpecification_4021ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } case InformationFlowEditPart.VISUAL_ID: { if(!domain2NotationMap.containsKey(view.getElement())) { result.addAll(UMLDiagramUpdater.getInformationFlow_4026ContainedLinks(view)); } if(!domain2NotationMap.containsKey(view.getElement()) || view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$ domain2NotationMap.put(view.getElement(), view); } break; } } for(Iterator children = view.getChildren().iterator(); children.hasNext();) { result.addAll(collectAllLinks((View)children.next(), domain2NotationMap)); } for(Iterator edges = view.getSourceEdges().iterator(); edges.hasNext();) { result.addAll(collectAllLinks((View)edges.next(), domain2NotationMap)); } return result; } /** * @generated */ private Collection<IAdaptable> createConnections(Collection<UMLLinkDescriptor> linkDescriptors, Map<EObject, View> domain2NotationMap) { LinkedList<IAdaptable> adapters = new LinkedList<IAdaptable>(); for(UMLLinkDescriptor nextLinkDescriptor : linkDescriptors) { EditPart sourceEditPart = getEditPart(nextLinkDescriptor.getSource(), domain2NotationMap); EditPart targetEditPart = getEditPart(nextLinkDescriptor.getDestination(), domain2NotationMap); if(sourceEditPart == null || targetEditPart == null) { continue; } CreateConnectionViewRequest.ConnectionViewDescriptor descriptor = new CreateConnectionViewRequest.ConnectionViewDescriptor(nextLinkDescriptor.getSemanticAdapter(), UMLVisualIDRegistry.getType(nextLinkDescriptor.getVisualID()), ViewUtil.APPEND, false, ((IGraphicalEditPart)getHost()).getDiagramPreferencesHint()); CreateConnectionViewRequest ccr = new CreateConnectionViewRequest(descriptor); ccr.setType(RequestConstants.REQ_CONNECTION_START); ccr.setSourceEditPart(sourceEditPart); sourceEditPart.getCommand(ccr); ccr.setTargetEditPart(targetEditPart); ccr.setType(RequestConstants.REQ_CONNECTION_END); Command cmd = targetEditPart.getCommand(ccr); if(cmd != null && cmd.canExecute()) { executeCommand(cmd); IAdaptable viewAdapter = (IAdaptable)ccr.getNewObject(); if(viewAdapter != null) { adapters.add(viewAdapter); } } } return adapters; } /** * @generated */ private EditPart getEditPart(EObject domainModelElement, Map<EObject, View> domain2NotationMap) { View view = (View)domain2NotationMap.get(domainModelElement); if(view != null) { return (EditPart)getHost().getViewer().getEditPartRegistry().get(view); } return null; } /** * @generated */ private Diagram getDiagram() { return ((View)getHost().getModel()).getDiagram(); } }