forked from nus-cs2113-AY2324S2/ip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from NGXZS/branch-Level-9
Level 9: Add find function
- Loading branch information
Showing
9 changed files
with
63 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
1. [T][1] item2 | ||
1. [T][0] item2 | ||
2. [T][0] item5 | ||
3. [D][1] item6 (by: sfadsfs) | ||
4. [T][0] item2 | ||
5. [T][1] item6 | ||
6. [D][0] item7 (by: efs) | ||
7. [D][0] kjdfl (by: sdf) | ||
8. [D][0] sdf(by: sdf sd /fds) | ||
9. [D][0] something (by: by 2/12/2019) | ||
10. [D][0] something (by: 2/12/2019) | ||
11. [D][0] haha (by: 2/12/2019) | ||
12. [D][0] halo (by: Dec 11 2019) | ||
3. [T][0] item2 | ||
4. [T][1] item6 | ||
5. [D][0] item7 (by: efs) | ||
6. [D][0] kjdfl (by: sdf) | ||
7. [D][0] sdf(by: sdf sd /fds) | ||
8. [D][0] something (by: by 2/12/2019) | ||
9. [D][0] something (by: 2/12/2019) | ||
10. [D][1] haha (by: 2/12/2019) | ||
11. [D][1] halo (by: Dec 11 2019) | ||
12. [T][0] testing | ||
13. [D][0] someting (by: Aug 22 2014) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
package tasks; | ||
|
||
public class Todo extends Task{ | ||
public class Todo extends Task { | ||
|
||
public Todo(String description){ | ||
super(description); | ||
public Todo(String description, int taskNum) { | ||
super(description, taskNum); | ||
this.type = 'T'; | ||
} | ||
|
||
@Override | ||
public char getType(){ | ||
return this.type; | ||
return type; | ||
} | ||
|
||
|
||
} |