Dylan's Project Portfolio Page
Project: CCACommander Ultra Promax Xtra 9000PLUS
Overview
CCACommander Ultra Promax Xtra 9000PLUS is a one-stop application for CCA Heads to manage CCA members and events, optimised for CCA Heads who prefer to use command line interface. My team and I adapted the product from an existing Java application called Address Book (Level 3) over a span of 1.5 months.
Given below is a summary of my contributions to the project. All of my code contributions can be found in this RepoSense link.
Features Implemented
- Create Event Feature #110
- Feature details: Allows the user of CCACommander to create a member in CCACommander’s database.
- Justifications: Gives the user the ability to add members to CCACommander so the user can keep track of them.
- Enrol Feature #149
- Feature details: Allows the user of CCACommander to enrol a member to an event.
- Justifications: Gives the user the ability to create associations between members and events to track members’ participation in events.
- Edit Enrolment Feature #178
- Feature details: Allows the user of CCACommander to edit the details of a specific member’s enrolment to an event.
- Justifications: Gives the user the ability to correct any mistakes in the details of the enrolment, or add more information.
Enhancements to existing features
- Convert
Nameto a class shared byMemberandEvent#109- Feature details: Previously,
memberNameandeventNamewere two separate classes. They were consolidated into a singleNameclass. - Justifications: Since
memberNameandeventNameare parsed in the same way with similar constraints, consolidating them into a singleNameclass reduces redundant and duplicate code.
- Feature details: Previously,
Project management
- In my role managing deliverables and deadlines, I would be in constant communication with my team members to check if they are on track to meet the deadlines set by the team lead and to check if they require any assistance.
Documentation
- User Guide
- Added command usage and descriptions for the following commands:
viewEvent,viewMemberandeditAttendance.
- Added command usage and descriptions for the following commands:
- Developer Guide
- Added implementation details for the
enrolfeature. - Added 4 planned enhancements:
- Allow users to delete values from optional fields in member/event/enrolment
- Improve
findMember/findEventcriteria - Make UI stay on current view upon
editMember/editEvent - Make UI stay on current view upon
undo/redo
- Added 2 Use Cases:
- UC05 - View members of event
- UC06 - View events of member
- Added non-functional requirements.
- Added Appendix B: Instructions for manual testing.
- Added implementation details for the