Create a class called CashRegister based on the information given (Create appropriate constructors, accessors and mutator methods). Then write a program that tests the class. Your driver program must do the required actions.

public class RetailItem { //Constructor for the RetailItem class public RetailItem(String d, double p) { } //Accessor methods for the instance variables public String getDesc() { } public double getPrice() { } //Mutator methods for the instance variables public void setDesc(String d) { } public void setPrice(double p) { } //Method to print out the details of the RetailItem object public String toString() { } }