Dateiverwaltung für die WebBox
ulrich
2017-03-18 1f550a4fce54040aa41f6351b0ba1fe1c404652d
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 {
25   private String soureName;
26   private String message;
27   private String kind;
28   private long lineNumber;
29
30   public String getSoureName() {
31     return soureName;
32   }
33
34   public void setSoureName(String soureName) {
35     this.soureName = soureName;
36   }
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 }