Skip to content

Package: Child

Child

Coverage

1: /**
2: * Copyright (c) 2011-2018 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: * EclipseSource Munich - initial API and implementation
13: */
14:
15: package org.eclipse.emf.ecp.view.keyattribute.test.example;
16:
17: import org.eclipse.emf.ecore.EObject;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>Child</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.keyattribute.test.example.Child#getIntermediateTarget <em>Intermediate
29: * Target</em>}</li>
30: * <li>{@link org.eclipse.emf.ecp.view.keyattribute.test.example.Child#getKey <em>Key</em>}</li>
31: * </ul>
32: *
33: * @see org.eclipse.emf.ecp.view.keyattribute.test.example.ExamplePackage#getChild()
34: * @model
35: * @generated
36: */
37: public interface Child extends EObject {
38:         /**
39:          * Returns the value of the '<em><b>Intermediate Target</b></em>' containment reference.
40:          * <!-- begin-user-doc -->
41:          * <p>
42:          * If the meaning of the '<em>Intermediate Target</em>' containment reference isn't clear,
43:          * there really should be more of a description here...
44:          * </p>
45:          * <!-- end-user-doc -->
46:          *
47:          * @return the value of the '<em>Intermediate Target</em>' containment reference.
48:          * @see #setIntermediateTarget(IntermediateTarget)
49:          * @see org.eclipse.emf.ecp.view.keyattribute.test.example.ExamplePackage#getChild_IntermediateTarget()
50:          * @model containment="true"
51:          * @generated
52:          */
53:         IntermediateTarget getIntermediateTarget();
54:
55:         /**
56:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.keyattribute.test.example.Child#getIntermediateTarget
57:          * <em>Intermediate Target</em>}' containment reference.
58:          * <!-- begin-user-doc -->
59:          * <!-- end-user-doc -->
60:          *
61:          * @param value the new value of the '<em>Intermediate Target</em>' containment reference.
62:          * @see #getIntermediateTarget()
63:          * @generated
64:          */
65:         void setIntermediateTarget(IntermediateTarget value);
66:
67:         /**
68:          * Returns the value of the '<em><b>Key</b></em>' containment reference.
69:          * <!-- begin-user-doc -->
70:          * <p>
71:          * If the meaning of the '<em>Key</em>' containment reference isn't clear,
72:          * there really should be more of a description here...
73:          * </p>
74:          * <!-- end-user-doc -->
75:          *
76:          * @return the value of the '<em>Key</em>' containment reference.
77:          * @see #setKey(KeyContainer)
78:          * @see org.eclipse.emf.ecp.view.keyattribute.test.example.ExamplePackage#getChild_Key()
79:          * @model containment="true"
80:          * @generated
81:          */
82:         KeyContainer getKey();
83:
84:         /**
85:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.keyattribute.test.example.Child#getKey <em>Key</em>}'
86:          * containment reference.
87:          * <!-- begin-user-doc -->
88:          * <!-- end-user-doc -->
89:          *
90:          * @param value the new value of the '<em>Key</em>' containment reference.
91:          * @see #getKey()
92:          * @generated
93:          */
94:         void setKey(KeyContainer value);
95:
96: } // Child