/** * This is the view for the Unit Converter application. */ public class UnitConvView extends JFrame { // TODO: Declare attributes as needed. ; /** * Initializes this view. * @param model the model to associate with this view */ public UnitConvView(UnitConvModel model) { // TODO: Initialize this view as needed. ; } // TODO: Implement accessor and mutator methods as needed. ; // TODO: Implement add listener methods as needed. ; }