Java JFileChooser .setApproveButtonText (String approveButtonText)
Syntax
JFileChooser.setApproveButtonText(String approveButtonText) has the following syntax.
public void setApproveButtonText(String approveButtonText)
Example
In the following code shows how to use JFileChooser.setApproveButtonText(String approveButtonText) method.
//from ww w. j av a2 s.com
import javax.swing.JFileChooser;
public class Main {
public static void main(String[] argv) {
JFileChooser chooser = new JFileChooser();
// Set the text
chooser.setApproveButtonText("New Approve Text");
// Set the mnemonic
chooser.setApproveButtonMnemonic('a');
// Set the tool tip
chooser.setApproveButtonToolTipText("New Approve Tool Tip");
chooser.showOpenDialog(null);
}
}
Home »
Java Tutorial »
javax.swing »
Java Tutorial »
javax.swing »