/** * Copyright (c) 2012-2016 Marsha Chechik, Alessio Di Sandro, Michalis Famelis, * Rick Salay. * 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: * Alessio Di Sandro - Implementation. */ package edu.toronto.cs.se.mmint.mid.operator; import edu.toronto.cs.se.mmint.mid.ExtendibleElementConstraint; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Constraint</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * A constraint for an operator. * <!-- end-model-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link edu.toronto.cs.se.mmint.mid.operator.OperatorConstraint#getRules <em>Rules</em>}</li> * </ul> * * @see edu.toronto.cs.se.mmint.mid.operator.OperatorPackage#getOperatorConstraint() * @model * @generated */ public interface OperatorConstraint extends ExtendibleElementConstraint { /** * Returns the value of the '<em><b>Rules</b></em>' containment reference list. * The list contents are of type {@link edu.toronto.cs.se.mmint.mid.operator.OperatorConstraintRule}. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The constraint's rules. * <!-- end-model-doc --> * @return the value of the '<em>Rules</em>' containment reference list. * @see edu.toronto.cs.se.mmint.mid.operator.OperatorPackage#getOperatorConstraint_Rules() * @model containment="true" required="true" * @generated */ EList<OperatorConstraintRule> getRules(); } // OperatorConstraint