textfield invisible java

Solutions on MaxInterview for textfield invisible java by the best coders in the world

showing results for - "textfield invisible java"
Damián
22 Feb 2017
1public class AddressPanel {
2
3    private JTextField textFieldToHide;
4
5    public void hideTextField(){
6        textFieldToHide.setVisible(false);
7    }
8}
9