blob: 419e793c9ce923fc019ca7f39baf8b7885629657 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2014 Willink Transformations 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
*******************************************************************************/
package org.eclipse.qvtd.pivot.qvtbase;
import org.eclipse.emf.common.util.EList;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.pivot.Element;
import org.eclipse.ocl.pivot.Variable;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Pattern</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.pivot.qvtbase.Pattern#getPredicate <em>Predicate</em>}</li>
* <li>{@link org.eclipse.qvtd.pivot.qvtbase.Pattern#getBindsTo <em>Binds To</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.pivot.qvtbase.QVTbasePackage#getPattern()
* @model
* @generated
*/
public interface Pattern extends Element {
/**
* Returns the value of the '<em><b>Predicate</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.pivot.qvtbase.Predicate}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.pivot.qvtbase.Predicate#getPattern <em>Pattern</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Predicate</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Predicate</em>' containment reference list.
* @see org.eclipse.qvtd.pivot.qvtbase.QVTbasePackage#getPattern_Predicate()
* @see org.eclipse.qvtd.pivot.qvtbase.Predicate#getPattern
* @model opposite="pattern" containment="true" ordered="false"
* @generated
*/
@NonNull EList<Predicate> getPredicate();
/**
* Returns the value of the '<em><b>Binds To</b></em>' reference list.
* The list contents are of type {@link org.eclipse.ocl.pivot.Variable}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Binds To</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Binds To</em>' reference list.
* @see org.eclipse.qvtd.pivot.qvtbase.QVTbasePackage#getPattern_BindsTo()
* @model ordered="false"
* @generated
*/
@NonNull EList<Variable> getBindsTo();
} // Pattern