Problem.java
3.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package fr.femtost.disc.eclipse.problemmetamodel.problem;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Problem</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link fr.femtost.disc.eclipse.problemmetamodel.problem.Problem#getLocation <em>Location</em>}</li>
* <li>{@link fr.femtost.disc.eclipse.problemmetamodel.problem.Problem#getDescription <em>Description</em>}</li>
* <li>{@link fr.femtost.disc.eclipse.problemmetamodel.problem.Problem#getSeverity <em>Severity</em>}</li>
* </ul>
* </p>
*
* @see fr.femtost.disc.eclipse.problemmetamodel.problem.ProblemPackage#getProblem()
* @model
* @generated
*/
public interface Problem extends EObject {
/**
* Returns the value of the '<em><b>Location</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Location</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Location</em>' attribute.
* @see #setLocation(String)
* @see fr.femtost.disc.eclipse.problemmetamodel.problem.ProblemPackage#getProblem_Location()
* @model required="true"
* @generated
*/
String getLocation();
/**
* Sets the value of the '{@link fr.femtost.disc.eclipse.problemmetamodel.problem.Problem#getLocation <em>Location</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Location</em>' attribute.
* @see #getLocation()
* @generated
*/
void setLocation(String value);
/**
* Returns the value of the '<em><b>Description</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Description</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Description</em>' attribute.
* @see #setDescription(String)
* @see fr.femtost.disc.eclipse.problemmetamodel.problem.ProblemPackage#getProblem_Description()
* @model required="true"
* @generated
*/
String getDescription();
/**
* Sets the value of the '{@link fr.femtost.disc.eclipse.problemmetamodel.problem.Problem#getDescription <em>Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' attribute.
* @see #getDescription()
* @generated
*/
void setDescription(String value);
/**
* Returns the value of the '<em><b>Severity</b></em>' attribute.
* The literals are from the enumeration {@link fr.femtost.disc.eclipse.problemmetamodel.problem.Severity}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Severity</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Severity</em>' attribute.
* @see fr.femtost.disc.eclipse.problemmetamodel.problem.Severity
* @see #setSeverity(Severity)
* @see fr.femtost.disc.eclipse.problemmetamodel.problem.ProblemPackage#getProblem_Severity()
* @model required="true"
* @generated
*/
Severity getSeverity();
/**
* Sets the value of the '{@link fr.femtost.disc.eclipse.problemmetamodel.problem.Problem#getSeverity <em>Severity</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Severity</em>' attribute.
* @see fr.femtost.disc.eclipse.problemmetamodel.problem.Severity
* @see #getSeverity()
* @generated
*/
void setSeverity(Severity value);
} // Problem