- This event has passed.
12 PM – Intro To Java – Gamas
February 26, 2022 @ 12:00 pm - 1:00 pm
Homework
- Continue on EmailApplication.
- Add one more class attribute to EmailMessage class: private LocalDateTime sentDate. Review LocalDateTime tutorial in https://www.w3schools.com/java/java_date.asp
- Add one more parameter to EmailMessage constructor: LocalDateTime sentDate.
- You have to change EmailApplication class inside handleCreateEmail method to include this LocalDateTime.now() when creating a new EmailMessage object.
- Change the code in “1. Check Your Inbox” to also display EmailMessage sent date along with other information.