Skip to content

Package: CrossReferenceContainer

CrossReferenceContainer

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.common.util.EList;
17: import org.eclipse.emf.ecore.EObject;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>Cross Reference Container</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.validation.test.model.CrossReferenceContainer#getContents <em>Contents</em>}</li>
29: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContainer#getSingleContent
30: * <em>Single Content</em>}</li>
31: * </ul>
32: *
33: * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getCrossReferenceContainer()
34: * @model
35: * @generated
36: */
37: public interface CrossReferenceContainer extends EObject {
38:         /**
39:          * Returns the value of the '<em><b>Contents</b></em>' containment reference list.
40:          * The list contents are of type {@link org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContent}.
41:          * It is bidirectional and its opposite is '
42:          * {@link org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContent#getParent <em>Parent</em>}'.
43:          * <!-- begin-user-doc -->
44:          * <p>
45:          * If the meaning of the '<em>Contents</em>' containment reference list isn't clear,
46:          * there really should be more of a description here...
47:          * </p>
48:          * <!-- end-user-doc -->
49:          *
50:          * @return the value of the '<em>Contents</em>' containment reference list.
51:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getCrossReferenceContainer_Contents()
52:          * @see org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContent#getParent
53:          * @model opposite="parent" containment="true"
54:          * @generated
55:          */
56:         EList<CrossReferenceContent> getContents();
57:
58:         /**
59:          * Returns the value of the '<em><b>Single Content</b></em>' containment reference.
60:          * It is bidirectional and its opposite is '
61:          * {@link org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContent#getSingleParent
62:          * <em>Single Parent</em>}'.
63:          * <!-- begin-user-doc -->
64:          * <p>
65:          * If the meaning of the '<em>Single Content</em>' containment reference isn't clear,
66:          * there really should be more of a description here...
67:          * </p>
68:          * <!-- end-user-doc -->
69:          *
70:          * @return the value of the '<em>Single Content</em>' containment reference.
71:          * @see #setSingleContent(CrossReferenceContent)
72:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getCrossReferenceContainer_SingleContent()
73:          * @see org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContent#getSingleParent
74:          * @model opposite="singleParent" containment="true"
75:          * @generated
76:          */
77:         CrossReferenceContent getSingleContent();
78:
79:         /**
80:          * Sets the value of the '
81:          * {@link org.eclipse.emf.ecp.view.validation.test.model.CrossReferenceContainer#getSingleContent
82:          * <em>Single Content</em>}' containment reference.
83:          * <!-- begin-user-doc -->
84:          * <!-- end-user-doc -->
85:          *
86:          * @param value the new value of the '<em>Single Content</em>' containment reference.
87:          * @see #getSingleContent()
88:          * @generated
89:          */
90:         void setSingleContent(CrossReferenceContent value);
91:
92: } // CrossReferenceContainer