Skip to content

Package: CrossReferenceContent

CrossReferenceContent

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: * Eugen Neufeld - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.validation.test.model;
15:
16: import org.eclipse.emf.ecore.EObject;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Cross Reference Content</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.validation.test.model.CrossReferenceContent#getParent <em>Parent</em>}</li>
28: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContent#getSingleParent
29: * <em>Single Parent</em>}</li>
30: * </ul>
31: *
32: * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getCrossReferenceContent()
33: * @model
34: * @generated
35: */
36: public interface CrossReferenceContent extends EObject {
37:         /**
38:          * Returns the value of the '<em><b>Parent</b></em>' container reference.
39:          * It is bidirectional and its opposite is '
40:          * {@link org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContainer#getContents <em>Contents</em>}'.
41:          * <!-- begin-user-doc -->
42:          * <p>
43:          * If the meaning of the '<em>Parent</em>' container reference isn't clear,
44:          * there really should be more of a description here...
45:          * </p>
46:          * <!-- end-user-doc -->
47:          *
48:          * @return the value of the '<em>Parent</em>' container reference.
49:          * @see #setParent(CrossReferenceContainer)
50:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getCrossReferenceContent_Parent()
51:          * @see org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContainer#getContents
52:          * @model opposite="contents" transient="false"
53:          * @generated
54:          */
55:         CrossReferenceContainer getParent();
56:
57:         /**
58:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContent#getParent
59:          * <em>Parent</em>}' container reference.
60:          * <!-- begin-user-doc -->
61:          * <!-- end-user-doc -->
62:          *
63:          * @param value the new value of the '<em>Parent</em>' container reference.
64:          * @see #getParent()
65:          * @generated
66:          */
67:         void setParent(CrossReferenceContainer value);
68:
69:         /**
70:          * Returns the value of the '<em><b>Single Parent</b></em>' container reference.
71:          * It is bidirectional and its opposite is '
72:          * {@link org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContainer#getSingleContent
73:          * <em>Single Content</em>}'.
74:          * <!-- begin-user-doc -->
75:          * <p>
76:          * If the meaning of the '<em>Single Parent</em>' container reference isn't clear,
77:          * there really should be more of a description here...
78:          * </p>
79:          * <!-- end-user-doc -->
80:          *
81:          * @return the value of the '<em>Single Parent</em>' container reference.
82:          * @see #setSingleParent(CrossReferenceContainer)
83:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getCrossReferenceContent_SingleParent()
84:          * @see org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContainer#getSingleContent
85:          * @model opposite="singleContent" transient="false"
86:          * @generated
87:          */
88:         CrossReferenceContainer getSingleParent();
89:
90:         /**
91:          * Sets the value of the '
92:          * {@link org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContent#getSingleParent
93:          * <em>Single Parent</em>}' container reference.
94:          * <!-- begin-user-doc -->
95:          * <!-- end-user-doc -->
96:          *
97:          * @param value the new value of the '<em>Single Parent</em>' container reference.
98:          * @see #getSingleParent()
99:          * @generated
100:          */
101:         void setSingleParent(CrossReferenceContainer value);
102:
103: } // CrossReferenceContent