blob: 72db9e0b489271c53a1e792f2814e5b0bc60b94f [file] [log] [blame]
/*****************************************************************************
* 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.sysml.service.types.helper;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.gmf.runtime.common.core.command.CommandResult;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.emf.type.core.commands.ConfigureElementCommand;
import org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest;
import org.eclipse.papyrus.sysml.portandflows.FlowSpecification;
import org.eclipse.papyrus.sysml.portandflows.PortandflowsPackage;
import org.eclipse.papyrus.uml.service.types.helper.advice.AbstractStereotypedElementEditHelperAdvice;
import org.eclipse.uml2.uml.Port;
import org.eclipse.uml2.uml.util.UMLUtil;
/** SysML FlowPort#In edit helper advice */
public class FlowPortNAEditHelperAdvice extends AbstractStereotypedElementEditHelperAdvice {
/** Default constructor */
public FlowPortNAEditHelperAdvice() {
requiredProfiles.add(PortandflowsPackage.eINSTANCE);
}
/** Verify that the new FlowPort is typed by a FlowSpecification */
@Override
protected ICommand getAfterConfigureCommand(final ConfigureRequest request) {
return new ConfigureElementCommand(request) {
@Override
protected CommandResult doExecuteWithResult(IProgressMonitor progressMonitor, IAdaptable info) throws ExecutionException {
Port port = (Port) request.getElementToConfigure();
// Ensure the type is a FlowSpecification
if ((port != null) && (port.getType() != null)) {
if (UMLUtil.getStereotypeApplication(port.getType(), FlowSpecification.class) != null) {
return CommandResult.newOKCommandResult(port);
}
}
return CommandResult.newCancelledCommandResult();
}
};
}
}