forked from AY1920S1-CS2113-T14-2/main
-
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.
- Loading branch information
Showing
9 changed files
with
146 additions
and
10 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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
T|0|read book | ||
D|0|return book |tmr | ||
E|0|meeting |2019-09-09 | ||
[P][✘] pain (from: TODO to: TODO |
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# About Us | ||
|
||
Duke - Level 3 was developed by the [se-edu](https://se-edu.github.io/docs/Team.html) team. | ||
*{The dummy content given below serves as a placeholder to be used by future forks of the project.}* | ||
|
||
We are a team based in the [School of Computing, National University of Singapore](http://www.comp.nus.edu.sg/). | ||
|
||
|
||
|
||
## Project Team | ||
|
||
### Hafidz Bin Hussain | ||
|
||
[photo here] | ||
|
||
[[github](https://github.com/9hafidz6)] [profolio] | ||
|
||
Role: Team Lead | ||
|
||
Responsibilities: | ||
|
||
### Sara Djambazovska | ||
|
||
[photo here] | ||
|
||
[[github](https://github.com/saradj/)] [profolio] | ||
|
||
Role: Developer | ||
|
||
Responsibilities: | ||
|
||
### Jiahan Yu | ||
|
||
[photo here] | ||
|
||
[[github](https://github.com/saradj/)] [profolio] | ||
|
||
Role: Developer | ||
|
||
Responsibilities: | ||
|
||
### Goh Zhen Hao Joey | ||
|
||
[photo here] | ||
|
||
[[github](https://github.com/x3chillax)] [profolio] | ||
|
||
Role: Developer | ||
|
||
Responsibilities: | ||
|
||
### Lincoln Lim | ||
|
||
[photo here] | ||
|
||
[[github](https://github.com/CEGLincoln)] [profolio] | ||
|
||
Role: Developer | ||
|
||
Responsibilities: |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package duke.task; | ||
|
||
import java.util.Date; | ||
|
||
public class DoWithinPeriodTasks extends Task{ | ||
|
||
private Date from; | ||
private Date to; | ||
|
||
public DoWithinPeriodTasks(String d, String f, String t) { | ||
//CONSTRUCTOR | ||
super(d); | ||
from = super.getDate(f); | ||
to = super.getDate(t); | ||
} | ||
|
||
public String printInFile(){ | ||
return this.toString(); | ||
} | ||
|
||
@Override | ||
public String toString(){ | ||
return "[P]" + super.toString() + "(from: " + "TODO" + " to: " + "TODO"; | ||
} | ||
} |
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