blob: 1c63a7850359fc9508655c127f29aa59cd7646d5 [file] [log] [blame]
/**
* Copyright (c) 2010, 2020 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - Initial API and implementation
*/
package org.eclipse.qvtd.xtext.qvtbasecs;
import org.eclipse.emf.common.util.EList;
import org.eclipse.ocl.xtext.basecs.ClassCS;
import org.eclipse.ocl.xtext.basecs.PathNameCS;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Abstract Transformation CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.xtext.qvtbasecs.AbstractTransformationCS#getOwnedPathName <em>Owned Path Name</em>}</li>
* <li>{@link org.eclipse.qvtd.xtext.qvtbasecs.AbstractTransformationCS#getOwnedTargets <em>Owned Targets</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.xtext.qvtbasecs.QVTbaseCSPackage#getAbstractTransformationCS()
* @model abstract="true"
* @generated
*/
public interface AbstractTransformationCS extends ClassCS
{
/**
* Returns the value of the '<em><b>Owned Path Name</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Path Name</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>Owned Path Name</em>' containment reference.
* @see #setOwnedPathName(PathNameCS)
* @see org.eclipse.qvtd.xtext.qvtbasecs.QVTbaseCSPackage#getAbstractTransformationCS_OwnedPathName()
* @model containment="true"
* @generated
*/
PathNameCS getOwnedPathName();
/**
* Sets the value of the '{@link org.eclipse.qvtd.xtext.qvtbasecs.AbstractTransformationCS#getOwnedPathName <em>Owned Path Name</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Owned Path Name</em>' containment reference.
* @see #getOwnedPathName()
* @generated
*/
void setOwnedPathName(PathNameCS value);
/**
* Returns the value of the '<em><b>Owned Targets</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.xtext.qvtbasecs.TargetCS}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Targets</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>Owned Targets</em>' containment reference list.
* @see org.eclipse.qvtd.xtext.qvtbasecs.QVTbaseCSPackage#getAbstractTransformationCS_OwnedTargets()
* @model containment="true"
* @generated
*/
EList<TargetCS> getOwnedTargets();
} // AbstractTransformationCS