-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTodo.java
53 lines (40 loc) · 1009 Bytes
/
Todo.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
package midterm;
public class Todo {
public static final int TITLE_SIZE = 20;
public static final int BODY_SIZE = 100;
public static final int RECORD_SIZE = 4 + TITLE_SIZE + BODY_SIZE + 1;
private int id;
private String title;
private String body;
private boolean done;
public Todo(int id, String title, String body, boolean isDone) {
this.id = id;
this.title = title;
this.body = body;
this.done = isDone;
}
public boolean isDone() {
return done;
}
public void setDone(boolean isDone) {
this.done = isDone;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
}