Skip to content

Package: ErrorReport

ErrorReport

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>Report</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.ErrorReport#getSeverity <em>Severity</em>}</li>
28: * <li>{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorReport#getMessage <em>Message</em>}</li>
29: * <li>{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorReport#getEmfLocation <em>Emf Location</em>}
30: * </li>
31: * <li>{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorReport#getSheetLocation <em>Sheet Location</em>
32: * }</li>
33: * </ul>
34: *
35: * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getErrorReport()
36: * @model
37: * @generated
38: */
39: public interface ErrorReport extends EObject {
40:         /**
41:          * Returns the value of the '<em><b>Severity</b></em>' attribute.
42:          * The literals are from the enumeration {@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.Severity}.
43:          * <!-- begin-user-doc -->
44:          * <p>
45:          * If the meaning of the '<em>Severity</em>' attribute isn't clear,
46:          * there really should be more of a description here...
47:          * </p>
48:          * <!-- end-user-doc -->
49:          *
50:          * @return the value of the '<em>Severity</em>' attribute.
51:          * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.Severity
52:          * @see #setSeverity(Severity)
53:          * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getErrorReport_Severity()
54:          * @model required="true"
55:          * @generated
56:          */
57:         Severity getSeverity();
58:
59:         /**
60:          * Sets the value of the '{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorReport#getSeverity
61:          * <em>Severity</em>}' attribute.
62:          * <!-- begin-user-doc -->
63:          * <!-- end-user-doc -->
64:          *
65:          * @param value the new value of the '<em>Severity</em>' attribute.
66:          * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.Severity
67:          * @see #getSeverity()
68:          * @generated
69:          */
70:         void setSeverity(Severity value);
71:
72:         /**
73:          * Returns the value of the '<em><b>Message</b></em>' attribute.
74:          * <!-- begin-user-doc -->
75:          * <p>
76:          * If the meaning of the '<em>Message</em>' attribute isn't clear,
77:          * there really should be more of a description here...
78:          * </p>
79:          * <!-- end-user-doc -->
80:          *
81:          * @return the value of the '<em>Message</em>' attribute.
82:          * @see #setMessage(String)
83:          * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getErrorReport_Message()
84:          * @model required="true"
85:          * @generated
86:          */
87:         String getMessage();
88:
89:         /**
90:          * Sets the value of the '{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorReport#getMessage
91:          * <em>Message</em>}' attribute.
92:          * <!-- begin-user-doc -->
93:          * <!-- end-user-doc -->
94:          *
95:          * @param value the new value of the '<em>Message</em>' attribute.
96:          * @see #getMessage()
97:          * @generated
98:          */
99:         void setMessage(String value);
100:
101:         /**
102:          * Returns the value of the '<em><b>Emf Location</b></em>' containment reference.
103:          * <!-- begin-user-doc -->
104:          * <p>
105:          * If the meaning of the '<em>Emf Location</em>' containment reference isn't clear,
106:          * there really should be more of a description here...
107:          * </p>
108:          * <!-- end-user-doc -->
109:          *
110:          * @return the value of the '<em>Emf Location</em>' containment reference.
111:          * @see #setEmfLocation(EMFLocation)
112:          * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getErrorReport_EmfLocation()
113:          * @model containment="true"
114:          * @generated
115:          */
116:         EMFLocation getEmfLocation();
117:
118:         /**
119:          * Sets the value of the '{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorReport#getEmfLocation
120:          * <em>Emf Location</em>}' containment reference.
121:          * <!-- begin-user-doc -->
122:          * <!-- end-user-doc -->
123:          *
124:          * @param value the new value of the '<em>Emf Location</em>' containment reference.
125:          * @see #getEmfLocation()
126:          * @generated
127:          */
128:         void setEmfLocation(EMFLocation value);
129:
130:         /**
131:          * Returns the value of the '<em><b>Sheet Location</b></em>' containment reference.
132:          * <!-- begin-user-doc -->
133:          * <p>
134:          * If the meaning of the '<em>Sheet Location</em>' containment reference isn't clear,
135:          * there really should be more of a description here...
136:          * </p>
137:          * <!-- end-user-doc -->
138:          *
139:          * @return the value of the '<em>Sheet Location</em>' containment reference.
140:          * @see #setSheetLocation(SheetLocation)
141:          * @see org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorPackage#getErrorReport_SheetLocation()
142:          * @model containment="true"
143:          * @generated
144:          */
145:         SheetLocation getSheetLocation();
146:
147:         /**
148:          * Sets the value of the '{@link org.eclipse.emfforms.spi.spreadsheet.core.error.model.ErrorReport#getSheetLocation
149:          * <em>Sheet Location</em>}' containment reference.
150:          * <!-- begin-user-doc -->
151:          * <!-- end-user-doc -->
152:          *
153:          * @param value the new value of the '<em>Sheet Location</em>' containment reference.
154:          * @see #getSheetLocation()
155:          * @generated
156:          */
157:         void setSheetLocation(SheetLocation value);
158:
159: } // ErrorReport