blob: 5119144f511d7efe1041bec868cd4b95d9ba4ade [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2019 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier:EPL-2.0
*
* Contributors:
* Pauline DEVILLE (CEA LIST) pauline.deville@cea.fr - Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.moka.fuml.validation.constraints;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.emf.validation.AbstractModelConstraint;
import org.eclipse.emf.validation.IValidationContext;
import org.eclipse.uml2.uml.ObjectFlow;
/**
* fuml_object_flow_not_multi
*
* isMulticast and isMultireceive must be false
* not self.isMulticast and not self.isMultireceive
*/
public class FumlObjectFlowNotMultiConstraint extends AbstractModelConstraint {
@Override
public IStatus validate(IValidationContext ctx) {
ObjectFlow objectFlow = (ObjectFlow) ctx.getTarget();
if (objectFlow.isMulticast() || objectFlow.isMultireceive()) {
return ctx.createFailureStatus("ObjectFlow - isMulticast and isMultireceive must be false");
}
return ctx.createSuccessStatus();
}
}