Write a class called dealer that has fields of type vehicle and

Write a class called Dealer that has fields of type Vehicle and Customer. The field for Vehicle is a class that has fields make, model, and VIN. The field Customer has fields Name and account number. The field called Name is also an existing class with fields last name and first name.

Define the class Dealer so that you can create a Dealer object either by a customer object, or by a customer object and a vehicle object. Provide accessor methods for each type of fields in the class Dealer. Also, provide a mutator method that changes the Vehicle object.

 

Save your time - order a paper!

Get your paper written from scratch within the tight deadline. Our service is a reliable solution to all your troubles. Place an order on any task and we will take care of it. You won’t have to worry about the quality and deadlines

Order Paper Now

WHAT I HAVE SO FAR:

public class Customer

{

    String accountNumber;

public Customer (Name fullName, String accountNumber)

    {

this.accountNumber = accountNumber;

    }

}

 

public class Dealer

{

public Dealer (Customer customer)

    {

    }

public Dealer (Vehicle vehicle, Customer customer)

    {

    }

}

 

 

 

 

public class Name

{

    String firstName, lastName;

public Name (String firstName, String lastName)

{

this.firstName = firstName;

this.lastName = lastName;

}

}

 

public class Vehicle

{

   String make, model, VIN;

public Vehicle (String make, String model, String VIN)

   {

this.make = make;

this.model = model;

this.VIN = VIN;

   }

}

 
"If this is not the paper you were searching for, you can order your 100% plagiarism free, professional written paper now!"

"Do you have an upcoming essay or assignment due?


Get any topic done in as little as 6 hours

If yes Order Similar Paper

All of our assignments are originally produced, unique, and free of plagiarism.