Create a class named Shirt with data members for collar size and sleeve length. Include 2 constructors (default and one with both data members) and appropriate set and get methods. Create a static variable to hold the material type and set it to “cotton”. [Shirt.java].
Create a TestShirt class with a main method to test the Shirt class. Create 5 objects of the class. Three will use the default constructor and then the set methods and user input to set the values. The other two will use the overloaded constructors and values that you provide when you instantiate the objects. Output all information for each object.