File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 22
33public class TypicalTasks {
44
5- public static final ToDoTaskStub TODO_TOPICS = new ToDoTaskStub ().setDescription ("go through topics for this week" );
6- public static final ToDoTaskStub TODO_IP = new ToDoTaskStub ().setDescription ("submit week 2 ip" );
5+ public static final ToDoTaskStub TODO_TOPICS = new ToDoTaskStub ().withDescription ("go through topics for this week" );
6+ public static final ToDoTaskStub TODO_IP = new ToDoTaskStub ().withDescription ("submit week 2 ip" );
77
8- public static final EventTaskStub EVENT_W3LECTURE = new EventTaskStub ().setDescription ("week 3 lecture" )
9- .setTime ("week 3 Friday" );
10- public static final EventTaskStub EVENT_W4LECTURE = new EventTaskStub ().setDescription ("week 4 lecture" )
11- .setTime ("week 4 Friday" );
8+ public static final EventTaskStub EVENT_W3LECTURE = new EventTaskStub ().withDescription ("week 3 lecture" )
9+ .withTime ("week 3 Friday" );
10+ public static final EventTaskStub EVENT_W4LECTURE = new EventTaskStub ().withDescription ("week 4 lecture" )
11+ .withTime ("week 4 Friday" );
12+
13+ public static final DeadLineTaskStub DL_ASSIGNMENT_1 = new DeadLineTaskStub ().withDescription ("assignment 1" )
14+ .withTime ("week 4" );
15+ public static final DeadLineTaskStub DL_ASSIGNMENT_2 = new DeadLineTaskStub ().withDescription ("assignment 2" )
16+ .withTime ("week 5" );
1217
1318}
You can’t perform that action at this time.
0 commit comments