Get JP JavaBank.jar.zip from Oracle Academy (or clone from https://github.com/profvanselow/JavaBank)
Import / Create project in IDE.
Experiment, examine, and analyze code
VCS -> Git -> Import into Version Control -> Share Project on GitHub
Practice Import from Version Control
VCS -> Git -> Branches -> New Branch -> 2-2
Declare an interface (p. 21)
Implement interface (p. 22)
Practice Pull
VCS -> Git -> Branches -> New Branch -> 2-3
Declare an abstract class (p. 10)
Use abstract class instead of interface (p. 13)
Update Account and AbstractBankAccount classes (p. 16)
Update the CreditAccount class (p. 24)
Test the Abstract Class with toString (p. 39)
The instanceof Operator (p. 43)
Practice Pull
VCS -> Git -> Branches -> New Branch -> 3-1
Add enum AccountType (p. 6)