-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconsoleROW.java
More file actions
115 lines (91 loc) · 1.85 KB
/
consoleROW.java
File metadata and controls
115 lines (91 loc) · 1.85 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
112
113
114
115
package Jvakt;
/*
* 2025-04-01 V.55 Michael Ekdal Added variable recid
* 2022-06-23 V.54 Michael Ekdal Added getVersion() to get at consistent version throughout all classes.
*/
public class consoleROW {
public int count;
public String id;
private int prio;
private String type;
private String credat;
private String condat;
private String status;
private String body;
private String agent;
private String recid;
public int row;
public int col = 0;
public consoleROW() {
this.count = 0;
this.id = " ";
this.prio = 3;
this.type = " ";
this.credat = " ";
this.condat = " ";
this.status = " ";
this.body = " ";
this.agent = " ";
this.recid = null;
}
public int getCount() {
return count;
}
public String getId() {
return id;
}
public int getPrio() {
return prio;
}
public String getType() {
return type;
}
public String getCredat() {
return credat;
}
public String getCondat() {
return condat;
}
public String getStatus() {
return status;
}
public String getBody() {
return body;
}
public String getAgent() {
return agent;
}
public String getRecid() {
return recid;
}
public void setCount(int count) {
this.count = count;
}
public void setId(String id) {
this.id = id;
}
public void setPrio(int prio) {
this.prio = prio;
}
public void setType(String type) {
this.type = type;
}
public void setCondat(String condat) {
this.condat = condat;
}
public void setCredat(String credat) {
this.credat = credat;
}
public void setStatus(String status) {
this.status = status;
}
public void setBody(String body) {
this.body = body;
}
public void setAgent(String agent) {
this.agent = agent;
}
public void setRecid(String recid) {
this.recid = recid;
}
}