blob: 692b50ab366123c9486e4299212af26fbf16c308 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 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:
*
* Mauricio Alferez (mauricio.alferez@cea.fr) CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.requirements.metrics.library;
/**
* List of constants used to calculate metrics about SysML requirements
*
*/
public interface IRequirementsOperations {
public static final String N_REQS="countRequirementsInAllOwnedElements";
public static final String N_SAT_REQS="countSatisfiedRequirementsInAllOwnedElements";
public static final String N_UNSAT_REQS="countUnsatisfiedRequirementsInAllOwnedElements";
}