After studying this code and completing the corresponding exercises, you should be able to,
- Utilize User Stories
[LO-UserStories]
- Utilize use cases
[LO-UseCases]
- Use Non Functional Requirements
[LO-NFR]
- Use Polymorphism
[LO-Polymorphism]
- Use abstract classes/methods
[LO-Abstract]
- Use interfaces
[LO-Interfaces]
- Follow Liskov Substitution Principle
[LO-LSP]
- Use Java-FX for GUI programming
[LO-JavaFx]
- Analyze Coupling and Cohesion of designs
[LO-CouplingCohesion]
- Apply Dependency Inversion Principle
[LO-DIP]
- Use Dependency Injection
[LO-DI]
- Apply Open-Closed Principle
[LO-OCP]
- Work in a 3KLoC code base
[LO-3KLoC]
-
Add a use case to the
DeveloperGuide.adoc
to cover the case of renaming of an existing tag. e.g. rename the tagfriends
tobuddies
(i.e. all persons who had thefriends
tag will now have abuddies
tag instead) Assume that AddressBook confirms the change with the user before carrying out the operation.
Note how the Command::execute()
method shows polymorphic behavior.
-
Add a method
boolean isMutating()
to theCommand
class. This method will returntrue
for command types that mutate the data. e.g.AddCommand
-
Currently, AddressBook data are saved to the file after every command. Take advantage of the the new method you added to limit file saving to only for command types that mutate data. i.e.
add
command should always save the data whilelist
command should never save data to the file.
ℹ️
|
There may be better ways to limit file saving to commands that mutate data. The above approach, while not optimal, will give you chance to implement a polymorphic behavior. |
Note how the AddressBook
class implements the ReadOnlyAddressBook
interface so that clients who don’t need write access to the AddressBook
can access the AddressBook
through the ReadOnlyAddressBook
interface instead.
-
Add a
Printable
interface as follows. -
Override
thegetPrintableString
in classesName
,Phone
,Email
, andAddress
so that each produces a printable string representation of the object. e.g.Name: John Smith
,Phone: 12349862
-
Add the following method in a suitable place of some other class. Note how the method depends on the Interface.
/** * Returns a concatenated version of the printable strings of each object. */ String getPrintableString(Printable... printables) {
The above method can be used to get a printable string representing a bunch of person details. For example, you should be able to call that method like this:
// p is a Person object return getPrintableString(p.getPhone(), p.getEmail(), p.getAddress());
-
Add a
throws Exception
clause to theAddCommand::execute
method. Notice how Java compiler will not allow it, unless you add the samethrows
clause to the parent class method. This is because if a child class throws an exception that is not specified by the Parent’s contract, the child class is no longer substitutable in place of the parent class. -
Also note that while in the above example the compiler enforces LSP, there are other situations where it is up to the programmer to enforce it. For example, if the method in the parent class works for
null
input, the overridden method in the child class should not rejectnull
inputs. This will not be enforced by the compiler.
-
Notice how having a separate
ParserUtil
class to handle user input validation, space trimming etc. of model data (an application of the Single Responsibility Principle) improves the cohesion of the model component (since it does not need to be concerned with handling user input) as well as theParserUtil
class.
-
Note how the
LogicManager
class doesn’t depend onStorageManager
directly, but rather the interfaceStorage
. This is an application of the Dependency Inversion Principle. -
Where else in the code do you notice the application of DIP?
Notice how the LogicManager
class does not depend on the StorageManager
class, but depends on the Storage
interface.
This allows us to use Dependency Injection to test the LogicManager
class without getting the StorageManager
class involved.
-
Notice how
LogicManagerTest
testsLogicManager
by constructing aStorageManager
object. -
Implement
StorageStub
such that calls to itssave*
methods do nothing (i.e. empty method body). -
Update
LogicManagerTest
to work with theStorageStub
instead of the actualStorageManager
object. i.e.LogicManagerTest
injects aStorageStub
object when constructing aLogicManager
before testing it. -
The example above uses DIP as a means to achieve DI. Note that there is another way to inject a
StorageStub
object, as shown below. In this case we do not apply the DIP but we still achieve DI.
-
Consider adding a new command to the Address Book. e.g. an
edit
command. Notice how little you need to change in theLogicManager
class to extend its behavior so that it can execute the new command. That is becauseLogicManager
follows the OCP i.e.LogicManager
is open to be extended with more commands but closed for modifications. -
Is it possible to make the
AddressBookParser
class more OCP-compliant in terms of extending it to handle more command types? -
In terms of how it saves data, is
LogicManager
more OCP-compliant due to the application of DIP as given inLO-DIP
? How can you improveLogicManager
's OCP-compliance further so that it can not only work with different types of storages, but different number of storages (e.g. save to both a text file and a database).