Skip to content

Package: EMFLocation

EMFLocation

Coverage

1: /**
2: * Copyright (c) 2011-2015 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: * Johannes Faltermeier - initial API and implementation
13: */
14: package org.eclipse.emfforms.spi.spreadsheet.core.error.model;
15:
16: import org.eclipse.emf.ecore.EObject;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>EMF Location</b></em>'.
21: * <!-- end-user-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * </p>
26: * <ul>
27: * <li>{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.EMFLocation#getRoot <em>Root</em>}</li>
28: * <li>{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.EMFLocation#getSettingLocation
29: * <em>Setting Location</em>}</li>
30: * <li>{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.EMFLocation#getDmrLocation <em>Dmr Location</em>}
31: * </li>
32: * </ul>
33: *
34: * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getEMFLocation()
35: * @model
36: * @generated
37: */
38: public interface EMFLocation extends EObject {
39:         /**
40:          * Returns the value of the '<em><b>Root</b></em>' reference.
41:          * <!-- begin-user-doc -->
42:          * <p>
43:          * If the meaning of the '<em>Root</em>' reference isn't clear,
44:          * there really should be more of a description here...
45:          * </p>
46:          * <!-- end-user-doc -->
47:          *
48:          * @return the value of the '<em>Root</em>' reference.
49:          * @see #setRoot(EObject)
50:          * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getEMFLocation_Root()
51:          * @model required="true"
52:          * @generated
53:          */
54:         EObject getRoot();
55:
56:         /**
57:          * Sets the value of the '{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.EMFLocation#getRoot
58:          * <em>Root</em>}' reference.
59:          * <!-- begin-user-doc -->
60:          * <!-- end-user-doc -->
61:          *
62:          * @param value the new value of the '<em>Root</em>' reference.
63:          * @see #getRoot()
64:          * @generated
65:          */
66:         void setRoot(EObject value);
67:
68:         /**
69:          * Returns the value of the '<em><b>Setting Location</b></em>' containment reference.
70:          * <!-- begin-user-doc -->
71:          * <p>
72:          * If the meaning of the '<em>Setting Location</em>' containment reference isn't clear,
73:          * there really should be more of a description here...
74:          * </p>
75:          * <!-- end-user-doc -->
76:          *
77:          * @return the value of the '<em>Setting Location</em>' containment reference.
78:          * @see #setSettingLocation(SettingLocation)
79:          * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getEMFLocation_SettingLocation()
80:          * @model containment="true"
81:          * @generated
82:          */
83:         SettingLocation getSettingLocation();
84:
85:         /**
86:          * Sets the value of the '
87:          * {@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.EMFLocation#getSettingLocation
88:          * <em>Setting Location</em>}' containment reference.
89:          * <!-- begin-user-doc -->
90:          * <!-- end-user-doc -->
91:          *
92:          * @param value the new value of the '<em>Setting Location</em>' containment reference.
93:          * @see #getSettingLocation()
94:          * @generated
95:          */
96:         void setSettingLocation(SettingLocation value);
97:
98:         /**
99:          * Returns the value of the '<em><b>Dmr Location</b></em>' containment reference.
100:          * <!-- begin-user-doc -->
101:          * <p>
102:          * If the meaning of the '<em>Dmr Location</em>' containment reference isn't clear,
103:          * there really should be more of a description here...
104:          * </p>
105:          * <!-- end-user-doc -->
106:          *
107:          * @return the value of the '<em>Dmr Location</em>' containment reference.
108:          * @see #setDmrLocation(DMRLocation)
109:          * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getEMFLocation_DmrLocation()
110:          * @model containment="true"
111:          * @generated
112:          */
113:         DMRLocation getDmrLocation();
114:
115:         /**
116:          * Sets the value of the '{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.EMFLocation#getDmrLocation
117:          * <em>Dmr Location</em>}' containment reference.
118:          * <!-- begin-user-doc -->
119:          * <!-- end-user-doc -->
120:          *
121:          * @param value the new value of the '<em>Dmr Location</em>' containment reference.
122:          * @see #getDmrLocation()
123:          * @generated
124:          */
125:         void setDmrLocation(DMRLocation value);
126:
127: } // EMFLocation