/* * Copyright (c) 2006, 2007 Borland Software Corporation. * 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: * Richard Gronback (Borland) - initial API and implementation */ package org.eclipse.gmf.examples.mindmap.rcp.edit.commands; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EObject; import org.eclipse.gmf.examples.mindmap.Map; import org.eclipse.gmf.examples.mindmap.MindmapPackage; import org.eclipse.gmf.runtime.lite.commands.VetoCommand; import org.eclipse.gmf.runtime.lite.requests.CreateConnectionRequestEx; import org.eclipse.gmf.runtime.notation.View; /** * @generated */ public class CreateRelationship4003StartCommand extends VetoCommand { /** * @generated */ private View source; /** * @generated */ public CreateRelationship4003StartCommand( CreateConnectionRequestEx requestEx) { //Until the mouse button is pressed, the source of the connection is in request.getTargetEditPart(), not in request.getSourceEditPart(). source = (View) requestEx.getTargetEditPart().getModel(); } /** * @generated */ protected boolean shouldExecute() { if (source == null) { return false; } Map container = (Map) getRelationshipContainer(source.getElement(), MindmapPackage.eINSTANCE.getMap()); if (container == null) { return false; } return true; } /** * Finds container element for the relationship of the specified type. * Default implementation goes up by containment hierarchy starting from * the specified element and returns the first element that is instance of * the specified container class. * @generated */ protected EObject getRelationshipContainer(EObject element, EClass containerClass) { for (; element != null; element = element.eContainer()) { if (containerClass.isSuperTypeOf(element.eClass())) { return element; } } return null; } }