Skip to content

Package: VKeyAttributeDomainModelReference

VKeyAttributeDomainModelReference

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