Skip to content

Package: IntermediateTarget

IntermediateTarget

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