/* prescription for beginning a GUI NetBeans project...
*
* a. create a project Application (save where you will be able to find it!)
* b. add new WhateverFrame()
as the only thing in main
* c. create a Swing Frame with the same name (i.e. WhateverFrame)
* set its layout to null
* in the constructor: setVisible(true); and setSize(456, 567); -- otherwise they retain their default values of 0 (i.e. false, and (0,0))
* add the Components you want
* for each Component
* set the name to something meaningful
* set the label/text/whatever to what you want
* add event handlers as needed
* */