Skip to content

Package: VMappingDomainModelReference

VMappingDomainModelReference

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.spi.mappingdmr.model;
15:
16: import org.eclipse.emf.ecore.EClass;
17: import org.eclipse.emf.ecp.view.spi.model.VDomainModelReference;
18: import org.eclipse.emf.ecp.view.spi.model.VFeaturePathDomainModelReference;
19:
20: /**
21: * <!-- begin-user-doc --> A representation of the model object ' <em><b>Mapping Domain Model Reference</b></em>'. <!--
22: * end-user-doc -->
23: *
24: * <p>
25: * The following features are supported:
26: * <ul>
27: * <li>
28: * {@link org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingDomainModelReference#getMappedClass
29: * <em>Mapped Class</em>}</li>
30: * <li>
31: * {@link org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingDomainModelReference#getDomainModelReference
32: * <em>Domain Model Reference</em>}</li>
33: * </ul>
34: * </p>
35: *
36: * @see org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingdmrPackage#getMappingDomainModelReference()
37: * @model
38: * @generated
39: */
40: public interface VMappingDomainModelReference extends
41:         VFeaturePathDomainModelReference {
42:         /**
43:          * Returns the value of the '<em><b>Mapped Class</b></em>' reference. <!--
44:          * begin-user-doc -->
45:          * <p>
46:          * If the meaning of the '<em>Mapped Class</em>' reference isn't clear, there really should be more of a description
47:          * here...
48:          * </p>
49:          * <!-- end-user-doc -->
50:          *
51:          * @return the value of the '<em>Mapped Class</em>' reference.
52:          * @see #setMappedClass(EClass)
53:          * @see org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingdmrPackage#getMappingDomainModelReference_MappedClass()
54:          * @model
55:          * @generated
56:          */
57:         EClass getMappedClass();
58:
59:         /**
60:          * Sets the value of the '
61:          * {@link org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingDomainModelReference#getMappedClass
62:          * <em>Mapped Class</em>}' reference. <!-- begin-user-doc --> <!--
63:          * end-user-doc -->
64:          *
65:          * @param value
66:          * the new value of the '<em>Mapped Class</em>' reference.
67:          * @see #getMappedClass()
68:          * @generated
69:          */
70:         void setMappedClass(EClass value);
71:
72:         /**
73:          * Returns the value of the '<em><b>Domain Model Reference</b></em>'
74:          * containment reference. <!-- begin-user-doc -->
75:          * <p>
76:          * If the meaning of the '<em>Domain Model Reference</em>' containment reference isn't clear, there really should be
77:          * more of a description here...
78:          * </p>
79:          * <!-- end-user-doc -->
80:          *
81:          * @return the value of the '<em>Domain Model Reference</em>' containment
82:          * reference.
83:          * @see #setDomainModelReference(VDomainModelReference)
84:          * @see org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingdmrPackage#getMappingDomainModelReference_DomainModelReference()
85:          * @model containment="true" required="true"
86:          * @generated
87:          */
88:         VDomainModelReference getDomainModelReference();
89:
90:         /**
91:          * Sets the value of the '
92:          * {@link org.eclipse.emf.ecp.view.spi.mappingdmr.model.VMappingDomainModelReference#getDomainModelReference
93:          * <em>Domain Model Reference</em>}' containment reference. <!--
94:          * begin-user-doc --> <!-- end-user-doc -->
95:          *
96:          * @param value
97:          * the new value of the '<em>Domain Model Reference</em>'
98:          * containment reference.
99:          * @see #getDomainModelReference()
100:          * @generated
101:          */
102:         void setDomainModelReference(VDomainModelReference value);
103:
104: } // VMappingDomainModelReference