Skip to content

Package: VTDomainModelReferenceSelector

VTDomainModelReferenceSelector

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: * EclipseSource Munich - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.template.selector.domainmodelreference.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.template.model.VTStyleSelector;
19:
20: /**
21: * <!-- begin-user-doc -->
22: * A representation of the model object '<em><b>Domain Model Reference Selector</b></em>'.
23: * <!-- end-user-doc -->
24: *
25: * <p>
26: * The following features are supported:
27: * </p>
28: * <ul>
29: * <li>{@link org.eclipse.emf.ecp.view.template.selector.domainmodelreference.model.VTDomainModelReferenceSelector#getDomainModelReference
30: * <em>Domain Model Reference</em>}</li>
31: * <li>{@link org.eclipse.emf.ecp.view.template.selector.domainmodelreference.model.VTDomainModelReferenceSelector#getRootEClass
32: * <em>Root EClass</em>}</li>
33: * </ul>
34: *
35: * @see org.eclipse.emf.ecp.view.template.selector.domainmodelreference.model.VTDomainmodelreferencePackage#getDomainModelReferenceSelector()
36: * @model
37: * @generated
38: */
39: public interface VTDomainModelReferenceSelector extends VTStyleSelector {
40:         /**
41:          * Returns the value of the '<em><b>Domain Model Reference</b></em>' containment reference.
42:          * <!-- begin-user-doc -->
43:          * <p>
44:          * If the meaning of the '<em>Domain Model Reference</em>' containment reference isn't clear, there really should be
45:          * more of a description here...
46:          * </p>
47:          * <!-- end-user-doc -->
48:          *
49:          * @return the value of the '<em>Domain Model Reference</em>' containment reference.
50:          * @see #setDomainModelReference(VDomainModelReference)
51:          * @see org.eclipse.emf.ecp.view.template.selector.domainmodelreference.model.VTDomainmodelreferencePackage#getDomainModelReferenceSelector_DomainModelReference()
52:          * @model containment="true" required="true"
53:          * @generated
54:          */
55:         VDomainModelReference getDomainModelReference();
56:
57:         /**
58:          * Sets the value of the
59:          * '{@link org.eclipse.emf.ecp.view.template.selector.domainmodelreference.model.VTDomainModelReferenceSelector#getDomainModelReference
60:          * <em>Domain Model Reference</em>}' containment reference.
61:          * <!-- begin-user-doc -->
62:          * <!-- end-user-doc -->
63:          *
64:          * @param value the new value of the '<em>Domain Model Reference</em>' containment reference.
65:          * @see #getDomainModelReference()
66:          * @generated
67:          */
68:         void setDomainModelReference(VDomainModelReference value);
69:
70:         /**
71:          * Returns the value of the '<em><b>Root EClass</b></em>' reference.
72:          * <!-- begin-user-doc -->
73:          *
74:          * @since 1.21
75:          * <!-- end-user-doc -->
76:          * <!-- begin-model-doc -->
77:          * The root EClass of the selector's domain model reference. The selector's DMR is resolved against this
78:          * EClass.
79:          * <!-- end-model-doc -->
80:          *
81:          * @return the value of the '<em>Root EClass</em>' reference.
82:          * @see #setRootEClass(EClass)
83:          * @see org.eclipse.emf.ecp.view.template.selector.domainmodelreference.model.VTDomainmodelreferencePackage#getDomainModelReferenceSelector_RootEClass()
84:          * @model annotation="http://www.eclipse.org/emf/2002/GenModel propertyDescription='The root EClass of the
85:          * selector\'s domain model reference. The reference is resolved against this EClass.'"
86:          * @generated
87:          */
88:         EClass getRootEClass();
89:
90:         /**
91:          * Sets the value of the
92:          * '{@link org.eclipse.emf.ecp.view.template.selector.domainmodelreference.model.VTDomainModelReferenceSelector#getRootEClass
93:          * <em>Root EClass</em>}' reference.
94:          * <!-- begin-user-doc -->
95:          *
96:          * @since 1.21
97:          * <!-- end-user-doc -->
98:          *
99:          * @param value the new value of the '<em>Root EClass</em>' reference.
100:          * @see #getRootEClass()
101:          * @generated
102:          */
103:         void setRootEClass(EClass value);
104:
105: } // VTDomainModelReferenceSelector