Skip to content

Package: VIndexDomainModelReference

VIndexDomainModelReference

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.indexdmr.model;
15:
16: import org.eclipse.emf.ecp.view.spi.model.VDomainModelReference;
17: import org.eclipse.emf.ecp.view.spi.model.VFeaturePathDomainModelReference;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>Index Domain Model Reference</b></em>'.
22: * <!-- end-user-doc -->
23: *
24: * <p>
25: * The following features are supported:
26: * <ul>
27: * <li>{@link org.eclipse.emf.ecp.view.spi.indexdmr.model.VIndexDomainModelReference#getPrefixDMR <em>Prefix
28: * DMR</em>}</li>
29: * <li>{@link org.eclipse.emf.ecp.view.spi.indexdmr.model.VIndexDomainModelReference#getIndex <em>Index</em>}</li>
30: * <li>{@link org.eclipse.emf.ecp.view.spi.indexdmr.model.VIndexDomainModelReference#getTargetDMR <em>Target
31: * DMR</em>}</li>
32: * </ul>
33: * </p>
34: *
35: * @see org.eclipse.emf.ecp.view.spi.indexdmr.model.VIndexdmrPackage#getIndexDomainModelReference()
36: * @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='resolveable'"
37: * @generated
38: */
39: public interface VIndexDomainModelReference extends VFeaturePathDomainModelReference {
40:         /**
41:          * Returns the value of the '<em><b>Prefix DMR</b></em>' containment reference.
42:          * <!-- begin-user-doc -->
43:          * <p>
44:          * If the meaning of the '<em>Prefix DMR</em>' containment reference isn't clear, there really should be more of a
45:          * description here...
46:          * </p>
47:          *
48:          * @since 1.6
49:          * <!-- end-user-doc -->
50:          *
51:          * @return the value of the '<em>Prefix DMR</em>' containment reference.
52:          * @see #setPrefixDMR(VDomainModelReference)
53:          * @see org.eclipse.emf.ecp.view.spi.indexdmr.model.VIndexdmrPackage#getIndexDomainModelReference_PrefixDMR()
54:          * @model containment="true" required="true"
55:          * @generated
56:          */
57:         VDomainModelReference getPrefixDMR();
58:
59:         /**
60:          * Sets the value of the '
61:          * {@link org.eclipse.emf.ecp.view.spi.indexdmr.model.VIndexDomainModelReference#getPrefixDMR <em>Prefix DMR</em>}'
62:          * containment reference.
63:          * <!-- begin-user-doc -->
64:          *
65:          * @since 1.6
66:          * <!-- end-user-doc -->
67:          *
68:          * @param value the new value of the '<em>Prefix DMR</em>' containment reference.
69:          * @see #getPrefixDMR()
70:          * @generated
71:          */
72:         void setPrefixDMR(VDomainModelReference value);
73:
74:         /**
75:          * Returns the value of the '<em><b>Target DMR</b></em>' containment reference.
76:          * <!-- begin-user-doc -->
77:          * <p>
78:          * If the meaning of the '<em>Target DMR</em>' containment reference isn't clear, there really should be more of a
79:          * description here...
80:          * </p>
81:          * <!-- end-user-doc -->
82:          *
83:          * @return the value of the '<em>Target DMR</em>' containment reference.
84:          * @see #setTargetDMR(VDomainModelReference)
85:          * @see org.eclipse.emf.ecp.view.spi.indexdmr.model.VIndexdmrPackage#getIndexDomainModelReference_TargetDMR()
86:          * @model containment="true" required="true"
87:          * @generated
88:          */
89:         VDomainModelReference getTargetDMR();
90:
91:         /**
92:          * Sets the value of the '
93:          * {@link org.eclipse.emf.ecp.view.spi.indexdmr.model.VIndexDomainModelReference#getTargetDMR <em>Target DMR</em>}'
94:          * containment reference.
95:          * <!-- begin-user-doc -->
96:          * <!-- end-user-doc -->
97:          *
98:          * @param value the new value of the '<em>Target DMR</em>' containment reference.
99:          * @see #getTargetDMR()
100:          * @generated
101:          */
102:         void setTargetDMR(VDomainModelReference value);
103:
104:         /**
105:          * Returns the value of the '<em><b>Index</b></em>' attribute.
106:          * <!-- begin-user-doc -->
107:          * <p>
108:          * If the meaning of the '<em>Index</em>' attribute isn't clear, there really should be more of a description
109:          * here...
110:          * </p>
111:          * <!-- end-user-doc -->
112:          *
113:          * @return the value of the '<em>Index</em>' attribute.
114:          * @see #setIndex(int)
115:          * @see org.eclipse.emf.ecp.view.spi.indexdmr.model.VIndexdmrPackage#getIndexDomainModelReference_Index()
116:          * @model
117:          * @generated
118:          */
119:         int getIndex();
120:
121:         /**
122:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.indexdmr.model.VIndexDomainModelReference#getIndex
123:          * <em>Index</em>}' attribute.
124:          * <!-- begin-user-doc -->
125:          * <!-- end-user-doc -->
126:          *
127:          * @param value the new value of the '<em>Index</em>' attribute.
128:          * @see #getIndex()
129:          * @generated
130:          */
131:         void setIndex(int value);
132:
133: } // VIndexDomainModelReference