Skip to content

Package: VFeaturePathDomainModelReference

VFeaturePathDomainModelReference

Coverage

1: /**
2: * Copyright (c) 2011-2013 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.model;
15:
16: import org.eclipse.emf.common.util.EList;
17: import org.eclipse.emf.ecore.EReference;
18: import org.eclipse.emf.ecore.EStructuralFeature;
19:
20: /**
21: * <!-- begin-user-doc -->
22: * A representation of the model object '<em><b>VFeature Path Domain Model Reference</b></em>'.
23: *
24: * @since 1.2
25: * <!-- end-user-doc -->
26: *
27: * <p>
28: * The following features are supported:
29: * </p>
30: * <ul>
31: * <li>{@link org.eclipse.emf.ecp.view.spi.model.VFeaturePathDomainModelReference#getDomainModelEFeature
32: * <em>Domain Model EFeature</em>}</li>
33: * <li>{@link org.eclipse.emf.ecp.view.spi.model.VFeaturePathDomainModelReference#getDomainModelEReferencePath
34: * <em>Domain Model EReference Path</em>}</li>
35: * </ul>
36: *
37: * @see org.eclipse.emf.ecp.view.spi.model.VViewPackage#getFeaturePathDomainModelReference()
38: * @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='resolveable'"
39: * @generated
40: */
41: public interface VFeaturePathDomainModelReference extends VDomainModelReference {
42:
43:         /**
44:          * Returns the value of the '<em><b>Domain Model EFeature</b></em>' reference.
45:          * <!-- begin-user-doc -->
46:          * <p>
47:          * If the meaning of the '<em>Domain Model EFeature</em>' reference isn't clear, there really should be more of a
48:          * description here...
49:          * </p>
50:          * <!-- end-user-doc -->
51:          *
52:          * @return the value of the '<em>Domain Model EFeature</em>' reference.
53:          * @see #setDomainModelEFeature(EStructuralFeature)
54:          * @see org.eclipse.emf.ecp.view.spi.model.VViewPackage#getFeaturePathDomainModelReference_DomainModelEFeature()
55:          * @model required="true"
56:          * @generated
57:          */
58:         EStructuralFeature getDomainModelEFeature();
59:
60:         /**
61:          * Sets the value of the
62:          * '{@link org.eclipse.emf.ecp.view.spi.model.VFeaturePathDomainModelReference#getDomainModelEFeature <em>Domain
63:          * Model EFeature</em>}' reference.
64:          * <!-- begin-user-doc -->
65:          * <!-- end-user-doc -->
66:          *
67:          * @param value the new value of the '<em>Domain Model EFeature</em>' reference.
68:          * @see #getDomainModelEFeature()
69:          * @generated
70:          */
71:         void setDomainModelEFeature(EStructuralFeature value);
72:
73:         /**
74:          * Returns the value of the '<em><b>Domain Model EReference Path</b></em>' reference list.
75:          * The list contents are of type {@link org.eclipse.emf.ecore.EReference}.
76:          * <!-- begin-user-doc -->
77:          * <p>
78:          * If the meaning of the '<em>Domain Model EReference Path</em>' reference list isn't clear, there really should be
79:          * more of a description here...
80:          * </p>
81:          * <!-- end-user-doc -->
82:          *
83:          * @return the value of the '<em>Domain Model EReference Path</em>' reference list.
84:          * @see org.eclipse.emf.ecp.view.spi.model.VViewPackage#getFeaturePathDomainModelReference_DomainModelEReferencePath()
85:          * @model
86:          * @generated
87:          */
88:         EList<EReference> getDomainModelEReferencePath();
89:
90: } // VFeaturePathDomainModelReference