-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlags.java
60 lines (50 loc) · 866 Bytes
/
Flags.java
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
/**
* Write a description of class Flags here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Flags
{
private boolean z, s, o;
private String status;
public Flags()
{
z = false;
s = false;
o = false;
status = "AOK";
}
public void setZ(boolean z)
{
this.z = z;
}
public void setS(boolean s)
{
this.s = s;
}
public void setO(boolean o)
{
this.o = o;
}
public void setStatus(String status)
{
this.status = status;
}
public boolean getZ()
{
return this.z;
}
public boolean getS()
{
return this.s;
}
public boolean getO()
{
return this.o;
}
public String getStatus()
{
return this.status;
}
}