Saravanan Anuja Harish's Project Portfolio Page
Project: Teaching Assistant’s Personal Assistant (TAPA)
TAPA is a desktop contact management application used to manage students’ contact and progress. The user interacts with it using a CLI, and it has a GUI created with JavaFX. It is written in Java, and has about 10 kLoC.
Given below are my contributions to the project.
-
Code contributed: RepoSense link
- New Feature:
- Added the ability to assign tasks to a single person by using their studentId and task name. #53
- What it does: The command adds the task to the list of tasks assigned to the person with the given studentId.
- Justification: This would give TA the ability to add tasks to individual students.
- Highlights: The
Task
andTaskList
classes were also created. ATask
object contains the task name, and information about whether the task was done. ATaskList
object contains a list of tasks that are assigned to a person.
- Added the ability to assign tasks to a single person by using their studentId and task name. #53
- New Feature:
- Added the ability to delete tasks that were previously assigned to a single person. #127
- What it does: The command deletes a task assigned to a person, by using studentId and the index of the task.
- Justification: This would give the TA the ability to delete tasks if they assigned tasks incorrectly.
- Highlights: I made use of the
TaskList
class and added a new method to delete the task.
- Added the ability to delete tasks that were previously assigned to a single person. #127
- New Feature:
- Added the ability to delete tasks that were previously assigned to all the persons taking the same module. #127
- What it does: The command deletes the task assigned to students taking a certain module. The module code and task name should be specified.
- Justification: Before this feature was implemented, if a TA had incorrectly assigned a task, they would have to delete the task for each student taking the module using their student code, and the index of that particular task for each student. With this feature, the TA could simply use this command to delete a task for all the students who are taking this module and have been assigned with this task.
- Highlights: I modified the implementation of
DeleteTask
that is executed by specifying studentId and index, to include this command.
- Added the ability to delete tasks that were previously assigned to all the persons taking the same module. #127
- Enhancements to existing features:
- Contribution to team-based tasks:
- Joint effort in renaming the product to “TAPA”.
- Maintained the issue tracker by assigning/labelling some issues.
- Joint effort in morphing product into “TAPA” by extending relevant features.
- Updated DG user stories to include list, deleteTask and assign commands description, implementation and use cases.
- Documentation:
- User Guide:
- Developer Guide:
- Community: