blob: 6bd2948f6a2759cbf7bb9a28f6de40d849237a5e [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.OpaqueBehavior;
/**
* fUML_inactive
*
* An opaque behavior cannot be active.
* not self.isActive
*/
public class FumlOpaqueBehaviorInactiveConstraint extends AbstractModelConstraint {
@Override
public IStatus validate(IValidationContext ctx) {
OpaqueBehavior opaqueBehavior = (OpaqueBehavior) ctx.getTarget();
if (opaqueBehavior.isActive()) {
return ctx.createFailureStatus("OpaqueBehavior - An opaque behavior cannot be active.");
}
return ctx.createSuccessStatus();
}
}