//Declaration of constructor with arguments: public class Shirt { private String type; private char size; public Shirt(String theType, char theSize) { type = theType; size = theSize; } }