Skip to content

Package: Child

Child

Coverage

1: /**
2: * Copyright (c) 2011-2014 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: * Johannes Faltermeier - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.mapping.test.example;
15:
16: /**
17: * <!-- begin-user-doc -->
18: * A representation of the model object '<em><b>Child</b></em>'.
19: * <!-- end-user-doc -->
20: *
21: * <p>
22: * The following features are supported:
23: * <ul>
24: * <li>{@link org.eclipse.emf.ecp.view.mapping.test.example.Child#getIntermediateTarget <em>Intermediate
25: * Target</em>}</li>
26: * </ul>
27: * </p>
28: *
29: * @see org.eclipse.emf.ecp.view.mapping.test.example.ExamplePackage#getChild()
30: * @model
31: * @generated
32: */
33: public interface Child extends AbstractChild {
34:         /**
35:          * Returns the value of the '<em><b>Intermediate Target</b></em>' containment reference.
36:          * <!-- begin-user-doc -->
37:          * <p>
38:          * If the meaning of the '<em>Intermediate Target</em>' containment reference isn't clear, there really should be
39:          * more of a description here...
40:          * </p>
41:          * <!-- end-user-doc -->
42:          *
43:          * @return the value of the '<em>Intermediate Target</em>' containment reference.
44:          * @see #setIntermediateTarget(IntermediateTarget)
45:          * @see org.eclipse.emf.ecp.view.mapping.test.example.ExamplePackage#getChild_IntermediateTarget()
46:          * @model containment="true"
47:          * @generated
48:          */
49:         IntermediateTarget getIntermediateTarget();
50:
51:         /**
52:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.mapping.test.example.Child#getIntermediateTarget
53:          * <em>Intermediate Target</em>}' containment reference.
54:          * <!-- begin-user-doc -->
55:          * <!-- end-user-doc -->
56:          *
57:          * @param value the new value of the '<em>Intermediate Target</em>' containment reference.
58:          * @see #getIntermediateTarget()
59:          * @generated
60:          */
61:         void setIntermediateTarget(IntermediateTarget value);
62:
63: } // Child