Create a class named Pizza. Data fields include a String of toppings (pepperoni, sausage, cheese, onions etc.) an integer for diameter in inches (such as 12, 14 or 16) and a double for price such as 13.99, 15.99. 17.99). Include methods to get and set values for each of these fields. Save as Pizza.java
Creat an application named TestPizza that instantiates on Pizza object and demonstrates the use of Pizza set and get methods. Save as TestPizza.java