blob: 49596b567d488fae5a460b880c79ce9b33d60354 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2005, 2006 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.examples.runtime.diagram.logic.internal.commands;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmf.examples.runtime.diagram.logic.semantic.InputTerminal;
import org.eclipse.gmf.examples.runtime.diagram.logic.semantic.OutputTerminal;
import org.eclipse.gmf.examples.runtime.diagram.logic.semantic.SemanticPackage;
import org.eclipse.gmf.examples.runtime.diagram.logic.semantic.Wire;
import org.eclipse.gmf.runtime.emf.core.util.EMFCoreUtil;
import org.eclipse.gmf.runtime.emf.type.core.commands.CreateRelationshipCommand;
import org.eclipse.gmf.runtime.emf.type.core.requests.CreateRelationshipRequest;
/**
* Command to create a new wire element.
*
* @author ldamus
*/
public class CreateWireCommand
extends CreateRelationshipCommand {
/**
* Constructs a new command to create a wire element.
*
* @param request
* the create request
*/
public CreateWireCommand(CreateRelationshipRequest request) {
super(request);
setEClass(SemanticPackage.eINSTANCE.getContainerElement());
}
/**
* Creates a wire and sets its source and target.
*/
protected EObject doDefaultElementCreation() {
Wire oWire = (Wire) EMFCoreUtil.create(getElementToEdit(),
getContainmentFeature(), getElementType().getEClass());
oWire.setSource((OutputTerminal) getSource());
oWire.setTarget((InputTerminal) getTarget());
return oWire;
}
/**
* A wire can only be created when the source is an output terminal and the
* target is an input terminal.
*/
public boolean canExecute() {
if ((getSource() instanceof OutputTerminal &&
getTarget() instanceof InputTerminal)) {
return super.canExecute();
}
return false;
}
}