Jia Cheng's Project Portfolio Page
Project: PropertyWhiz
Property Whiz is a CLI customer relationship management application made for property agents. PropertyWhiz helps to keep track of properties and prospective buyers, then match properties and buyers.
Given below are my contributions to the project.
- New Feature: Added the one to many matching command.
- What it does: Allows the user to match one property to many buyers, and to match one buyer to many properties.
- Justification: This feature allows the user (property agent) to find the most compatible properties for one of his/her clients, as well as to find the clients most likely to make a purchase on a certain property.
- Highlights: This enhancement is the first command that requires some form of sorting, i.e. in addition to
Predicate
s for filtering, this command requires aComparator
to order buyers and properties in terms of compatibility. As the JavaFX library offers eitherSortedList
andFilteredList
and not both, we need to choose between several candidate implementations to stack predicates and comparators. This requires weighing of costs and benefits as some implementations, like wrappingSortedList
aroundFilteredList
, are easier with less boilerplate but slower in performance. The implementation choice of a list that can be both sorted and filtered will affect other commands manipulating the list as well.
-
Code contributed: RepoSense link
- Project management:
- Managed the final release of
v1.3
on Github - Updated CI to ignore missing end of lines for txt files
- Managed documentation issues and tasks across milestones
- Managed the final release of
- Enhancements to existing features:
- Documentation:
- User Guide:
- Developer Guide:
- Community: