commit | author | age
|
e3043f
|
1 |
/*
|
U |
2 |
Dateiverwaltung - File management in your browser
|
|
3 |
Copyright (C) 2017 Ulrich Hilger, http://uhilger.de
|
|
4 |
|
|
5 |
This program is free software: you can redistribute it and/or modify
|
|
6 |
it under the terms of the GNU Affero General Public License as
|
|
7 |
published by the Free Software Foundation, either version 3 of the
|
|
8 |
License, or (at your option) any later version.
|
|
9 |
|
|
10 |
This program is distributed in the hope that it will be useful,
|
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13 |
GNU Affero General Public License for more details.
|
|
14 |
|
|
15 |
You should have received a copy of the GNU Affero General Public License
|
|
16 |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17 |
*/
|
|
18 |
|
|
19 |
package de.uhilger.filecms.data;
|
|
20 |
|
|
21 |
/**
|
|
22 |
*
|
|
23 |
*/
|
|
24 |
public class CompilerIssue {
|
a450f2
|
25 |
private String sourceName;
|
e3043f
|
26 |
private String message;
|
U |
27 |
private String kind;
|
|
28 |
private long lineNumber;
|
|
29 |
|
a450f2
|
30 |
public String getSourceName() {
|
U |
31 |
return sourceName;
|
e3043f
|
32 |
}
|
U |
33 |
|
a450f2
|
34 |
public void setSourceName(String sourceName) {
|
U |
35 |
this.sourceName = sourceName;
|
e3043f
|
36 |
}
|
U |
37 |
|
|
38 |
public String getMessage() {
|
|
39 |
return message;
|
|
40 |
}
|
|
41 |
|
|
42 |
public void setMessage(String message) {
|
|
43 |
this.message = message;
|
|
44 |
}
|
|
45 |
|
|
46 |
public String getKind() {
|
|
47 |
return kind;
|
|
48 |
}
|
|
49 |
|
|
50 |
public void setKind(String kind) {
|
|
51 |
this.kind = kind;
|
|
52 |
}
|
|
53 |
|
|
54 |
public long getLineNumber() {
|
|
55 |
return lineNumber;
|
|
56 |
}
|
|
57 |
|
|
58 |
public void setLineNumber(long lineNumber) {
|
|
59 |
this.lineNumber = lineNumber;
|
|
60 |
}
|
|
61 |
|
|
62 |
|
|
63 |
}
|