Question: Create a class named Person that holds the following fields: two String objects for the persons first and last name and a LocalDate object for
Create a class named Person that holds the following fields: two String objects for the person’s first and last name and a LocalDate object for the person’s birthdate. Create a class named Couple that contains two Person objects. Create a class named Wedding for a wedding planner that includes the date of the wedding, the names of the Couple being married, and a String for the location. Provide constructors for each class that accept parameters for each field, and provide get methods for each field. Then write a program that creates two Wedding objects and in turn passes each to a method that displays all the details. Save the files as Person.java, Couple.java, Wedding.java, and TestWedding.java.
Step by Step Solution
3.46 Rating (166 Votes )
There are 3 Steps involved in it
Personjava import javatime public class Person private String firstName private String lastName private LocalDate birthDate public PersonString first ... View full answer
Get step-by-step solutions from verified subject matter experts
