blob: c5276259da48295e5e40c1a984fca849a656b1cc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 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 example1.source;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Z</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link example1.source.Z#getToY <em>To Y</em>}</li>
* <li>{@link example1.source.Z#getRefers <em>Refers</em>}</li>
* </ul>
*
* @see example1.source.SourcePackage#getZ()
* @model
* @generated
*/
public interface Z extends SElement {
/**
* Returns the value of the '<em><b>To Y</b></em>' container reference.
* It is bidirectional and its opposite is '{@link example1.source.Y#getOwnsZ <em>Owns Z</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>To Y</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>To Y</em>' container reference.
* @see #setToY(Y)
* @see example1.source.SourcePackage#getZ_ToY()
* @see example1.source.Y#getOwnsZ
* @model opposite="ownsZ" transient="false"
* @generated
*/
Y getToY();
/**
* Sets the value of the '{@link example1.source.Z#getToY <em>To Y</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>To Y</em>' container reference.
* @see #getToY()
* @generated
*/
void setToY(Y value);
/**
* Returns the value of the '<em><b>Refers</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Refers</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>Refers</em>' containment reference.
* @see #setRefers(PathNameCS)
* @see example1.source.SourcePackage#getZ_Refers()
* @model containment="true"
* @generated
*/
PathNameCS getRefers();
/**
* Sets the value of the '{@link example1.source.Z#getRefers <em>Refers</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Refers</em>' containment reference.
* @see #getRefers()
* @generated
*/
void setRefers(PathNameCS value);
} // Z