Lesson 8 - Birthday Reminder in Java Swing - Finishing the Application
In the previous lesson, Birthday Reminder in Java Swing - Completing the logic, we finished the logic layer of a friends' birthday reminder application. In today's lesson, we'll wire new methods to the form and complete the application.
Nearest Birthday
We'll add an auxiliary private method refreshNearest()
to the
main form class to refresh the label with the nearest birthday:
private void refreshNearest() { if (!personManager.getPersons().isEmpty()) { Person nearest = personManager.findNearest(); int age = nearest.calculateAge(); LocalDate today = LocalDate.now(); if (today.getDayOfMonth() != nearest.getBirthday().getDayOfMonth() || today.getMonth() != nearest.getBirthday().getMonth() || today.getYear() != nearest.getBirthday().getYear()) { age++; } nearestJLabel.setText(nearest.getName() + " (" + age + " years old) in " + nearest.getDaysRemaining() + " days"); } else { nearestJLabel.setText("There are no persons in the list."); } }
If there are any persons in the person manager, we'll find
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
In this Java Swing tutorial, we'll wire the last methods from the logic layer to the form to finish a simple birthday reminder application.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.