.Design a class named Person with fields for holding a person’s name , address,
.Design a class named Person with fields for holding a person’s name , address, and telephone number (all as Strings ). Write a constructor that initializes all of these values , and mutator and accessor methods for every field. Next, design a class named Customer, which inherits from the Person class . The Customer class should have a String field for the customer number and a boolean field indicating whether the […]