Skip to content

Package: EdaptTestY

EdaptTestY

Coverage

1: /**
2: * Copyright (c) 2011-2013 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: */
13: package org.eclipse.emf.ecp.view.edapt.util.test.model.y;
14:
15: import org.eclipse.emf.ecore.EObject;
16: import org.eclipse.emf.ecp.view.edapt.util.test.model.x.EdaptTestX;
17: import org.eclipse.emf.ecp.view.edapt.util.test.model.z.EdaptTestZ;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>Y</b></em>'.
22: * <!-- end-user-doc -->
23: *
24: * <p>
25: * The following features are supported:
26: * </p>
27: * <ul>
28: * <li>{@link org.eclipse.emf.ecp.view.edapt.util.test.model.y.EdaptTestY#getX <em>X</em>}</li>
29: * <li>{@link org.eclipse.emf.ecp.view.edapt.util.test.model.y.EdaptTestY#getZ <em>Z</em>}</li>
30: * </ul>
31: *
32: * @see org.eclipse.emf.ecp.view.edapt.util.test.model.y.EdaptTestYPackage#getY()
33: * @model
34: * @generated
35: */
36: public interface EdaptTestY extends EObject {
37:         /**
38:          * Returns the value of the '<em><b>X</b></em>' reference.
39:          * <!-- begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>X</em>' reference isn't clear,
42:          * there really should be more of a description here...
43:          * </p>
44:          * <!-- end-user-doc -->
45:          *
46:          * @return the value of the '<em>X</em>' reference.
47:          * @see #setX(EdaptTestX)
48:          * @see org.eclipse.emf.ecp.view.edapt.util.test.model.y.EdaptTestYPackage#getY_X()
49:          * @model
50:          * @generated
51:          */
52:         EdaptTestX getX();
53:
54:         /**
55:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.edapt.util.test.model.y.EdaptTestY#getX <em>X</em>}'
56:          * reference.
57:          * <!-- begin-user-doc -->
58:          * <!-- end-user-doc -->
59:          *
60:          * @param value the new value of the '<em>X</em>' reference.
61:          * @see #getX()
62:          * @generated
63:          */
64:         void setX(EdaptTestX value);
65:
66:         /**
67:          * Returns the value of the '<em><b>Z</b></em>' reference.
68:          * <!-- begin-user-doc -->
69:          * <p>
70:          * If the meaning of the '<em>Z</em>' reference isn't clear,
71:          * there really should be more of a description here...
72:          * </p>
73:          * <!-- end-user-doc -->
74:          *
75:          * @return the value of the '<em>Z</em>' reference.
76:          * @see #setZ(EdaptTestZ)
77:          * @see org.eclipse.emf.ecp.view.edapt.util.test.model.y.EdaptTestYPackage#getY_Z()
78:          * @model
79:          * @generated
80:          */
81:         EdaptTestZ getZ();
82:
83:         /**
84:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.edapt.util.test.model.y.EdaptTestY#getZ <em>Z</em>}'
85:          * reference.
86:          * <!-- begin-user-doc -->
87:          * <!-- end-user-doc -->
88:          *
89:          * @param value the new value of the '<em>Z</em>' reference.
90:          * @see #getZ()
91:          * @generated
92:          */
93:         void setZ(EdaptTestZ value);
94:
95: } // EdaptTestY