別のjbuttonをクリックしたときに1つのjbuttonを取得したい。
サンプルコードのリンクはこちら(jbuttonとしてログイン、パスワードとしてasdf)
//File Name= test1.java
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class test1 extends JFrame {
public static void main(String[] args) {
new test1();
}
public test1() {
super("Using JButton");
Container content = getContentPane();
content.setBackground(Color.white);
content.setLayout(new FlowLayout());
JButton button = new JButton("First");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.out.println("You clicked first button");
}
});
content.add(button);
JButton button2 = new JButton("Second");
button2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.out.println("You clicked second button");
}
});
content.add(button2);
pack();
setVisible(true);
}
}
「最初」ボタンをクリックすると、「2番目」ボタンを非表示にしたい。私の期待は次のようなものです」
button.setName("something");
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
System.out.println("You clicked first button");
btn2=getButtonByName("something");
btn2.setVisible(!btn2.isVisible());
}
});"