Does anyone know the reason why these Java swing methods are deprecated :
Component.show(); Component.hide();
The hide and show methods of java.awt.Component have been deprecated for a while.
The proper way to set the visibility of a component is setVisible(boolean b)