Skip to content

Package: SettingToSheetMapping

SettingToSheetMapping

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>Setting To Sheet Mapping</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.SettingToSheetMapping#getSheetLocation
28: * <em>Sheet Location</em>}</li>
29: * <li>{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.SettingToSheetMapping#getSettingLocation
30: * <em>Setting Location</em>}</li>
31: * </ul>
32: *
33: * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getSettingToSheetMapping()
34: * @model
35: * @generated
36: */
37: public interface SettingToSheetMapping extends EObject {
38:         /**
39:          * Returns the value of the '<em><b>Sheet Location</b></em>' containment reference.
40:          * <!-- begin-user-doc -->
41:          * <p>
42:          * If the meaning of the '<em>Sheet Location</em>' containment reference isn't clear,
43:          * there really should be more of a description here...
44:          * </p>
45:          * <!-- end-user-doc -->
46:          *
47:          * @return the value of the '<em>Sheet Location</em>' containment reference.
48:          * @see #setSheetLocation(SheetLocation)
49:          * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getSettingToSheetMapping_SheetLocation()
50:          * @model containment="true" required="true"
51:          * @generated
52:          */
53:         SheetLocation getSheetLocation();
54:
55:         /**
56:          * Sets the value of the '
57:          * {@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.SettingToSheetMapping#getSheetLocation
58:          * <em>Sheet Location</em>}' containment reference.
59:          * <!-- begin-user-doc -->
60:          * <!-- end-user-doc -->
61:          *
62:          * @param value the new value of the '<em>Sheet Location</em>' containment reference.
63:          * @see #getSheetLocation()
64:          * @generated
65:          */
66:         void setSheetLocation(SheetLocation 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#getSettingToSheetMapping_SettingLocation()
80:          * @model containment="true" required="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.SettingToSheetMapping#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: } // SettingToSheetMapping