forked from Ildar1/RQCODE_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRequirement.java
More file actions
44 lines (31 loc) · 868 Bytes
/
Requirement.java
File metadata and controls
44 lines (31 loc) · 868 Bytes
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
/**
* The RQCODE requirement class.
*/
public abstract class Requirement implements Checkable{
/**
* Requirement statement in textual format
*/
private String statement;
private CheckStatus lastCheckStatus=CheckStatus.INCOMPLETE;
public CheckStatus getLastCheckStatus() {
return lastCheckStatus;
}
public void setLastCheckStatus(CheckStatus lastCheckStatus) {
this.lastCheckStatus = lastCheckStatus;
}
public Requirement() {
}
public Requirement(String statement) {
this.statement = statement;
}
public String getStatement() {
return statement;
}
public void setStatement(String statement) {
this.statement = statement;
}
@Override
public String toString() {
return "Requirement [statement=" + statement + "]";
}
}