blob: 069f58dc4a794dee60eeac94c12ecec1493daaf4 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2007, 2008 E.D.Willink and others.
* 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:
* E.D.Willink - initial API and implementation
*
* </copyright>
*
* $Id: Predicate.java,v 1.3 2009/01/27 21:17:57 ewillink Exp $
*/
package org.eclipse.qvt.declarative.ecore.QVTBase;
import org.eclipse.emf.ecore.EModelElement;
import org.eclipse.ocl.ecore.OCLExpression;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Predicate</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.qvt.declarative.ecore.QVTBase.Predicate#getConditionExpression <em>Condition Expression</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.ecore.QVTBase.Predicate#getPattern <em>Pattern</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.qvt.declarative.ecore.QVTBase.QVTBasePackage#getPredicate()
* @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='ConditionExpressionIsBoolean\r\nExternalVariablesAreBoundByPattern'"
* @generated
*/
public interface Predicate extends EModelElement {
/**
* Returns the value of the '<em><b>Condition Expression</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Condition Expression</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Condition Expression</em>' containment reference.
* @see #setConditionExpression(OCLExpression)
* @see org.eclipse.qvt.declarative.ecore.QVTBase.QVTBasePackage#getPredicate_ConditionExpression()
* @model containment="true" required="true"
* @generated
*/
OCLExpression getConditionExpression();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.ecore.QVTBase.Predicate#getConditionExpression <em>Condition Expression</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Condition Expression</em>' containment reference.
* @see #getConditionExpression()
* @generated
*/
void setConditionExpression(OCLExpression value);
/**
* Returns the value of the '<em><b>Pattern</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvt.declarative.ecore.QVTBase.Pattern#getPredicate <em>Predicate</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Pattern</em>' container reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Pattern</em>' container reference.
* @see #setPattern(Pattern)
* @see org.eclipse.qvt.declarative.ecore.QVTBase.QVTBasePackage#getPredicate_Pattern()
* @see org.eclipse.qvt.declarative.ecore.QVTBase.Pattern#getPredicate
* @model opposite="predicate" required="true"
* @generated
*/
Pattern getPattern();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.ecore.QVTBase.Predicate#getPattern <em>Pattern</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Pattern</em>' container reference.
* @see #getPattern()
* @generated
*/
void setPattern(Pattern value);
} // Predicate