Example usage for javax.swing JButton hide

List of usage examples for javax.swing JButton hide

Introduction

In this page you can find the example usage for javax.swing JButton hide.

Prototype

@Override
@Deprecated
public void hide() 

Source Link

Usage

From source file:org.martin.ftp.gui.GUIClient.java

private void hideButtons(JButton... buttons) {
    for (JButton button : buttons)
        button.hide();
}