Skip to content

Package: VMappingDomainModelReferenceSegment

VMappingDomainModelReferenceSegment

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: * Lucas Koehler - initial API and implementation
13: */
14: package org.eclipse.emfforms.spi.view.mappingsegment.model;
15:
16: import org.eclipse.emf.ecore.EClass;
17: import org.eclipse.emf.ecp.view.spi.model.VFeatureDomainModelReferenceSegment;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>Mapping Domain Model Reference Segment</b></em>'.
22: * <!-- end-user-doc -->
23: *
24: * <p>
25: * The following features are supported:
26: * </p>
27: * <ul>
28: * <li>{@link org.eclipse.emfforms.spi.view.mappingsegment.model.VMappingDomainModelReferenceSegment#getMappedClass
29: * <em>Mapped Class</em>}</li>
30: * </ul>
31: *
32: * @see org.eclipse.emfforms.spi.view.mappingsegment.model.VMappingsegmentPackage#getMappingDomainModelReferenceSegment()
33: * @model
34: * @generated
35: */
36: public interface VMappingDomainModelReferenceSegment extends VFeatureDomainModelReferenceSegment {
37:         /**
38:          * Returns the value of the '<em><b>Mapped Class</b></em>' reference.
39:          * <!-- begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>Mapped Class</em>' reference isn't clear,
42:          * there really should be more of a description here...
43:          * </p>
44:          * <!-- end-user-doc -->
45:          *
46:          * @return the value of the '<em>Mapped Class</em>' reference.
47:          * @see #setMappedClass(EClass)
48:          * @see org.eclipse.emfforms.spi.view.mappingsegment.model.VMappingsegmentPackage#getMappingDomainModelReferenceSegment_MappedClass()
49:          * @model required="true"
50:          * @generated
51:          */
52:         EClass getMappedClass();
53:
54:         /**
55:          * Sets the value of the
56:          * '{@link org.eclipse.emfforms.spi.view.mappingsegment.model.VMappingDomainModelReferenceSegment#getMappedClass
57:          * <em>Mapped Class</em>}' reference.
58:          * <!-- begin-user-doc -->
59:          * <!-- end-user-doc -->
60:          *
61:          * @param value the new value of the '<em>Mapped Class</em>' reference.
62:          * @see #getMappedClass()
63:          * @generated
64:          */
65:         void setMappedClass(EClass value);
66:
67: } // VMappingDomainModelReferenceSegment