Эй, я хочу JFrame, который должен иметь кнопки «LeftButton» и «RightButton» и JTextArea. После того, как я нажму одну из двух, я хочу, чтобы JTextArea записал, какие кнопки были нажаты в новой строке. Для этого я хочу использовать класс MyActionListener с ссылками на JTextArea, который реализует Actionlistener.
Я попытался дать ActionPerformed JTextArea и понял, что должен создавать сеттеры самостоятельно. Затем я понял, что класс MyActionListener требует также объект типа JTextArea, который такой же, как в классе JFrame. Затем я узнал, что мне нужно обновить JTextArea в классе JFrame, и вот я сейчас немного застрял. Я попытался поместить сеттеры в класс JFrame и вызвать их из MyActionListener безуспешно, и я попытался сделать что-то вроде A_18_c.south = south
package Aufgabe_18;
import javax.swing.*;
import java.awt.*;
public class A_18_c extends JFrame {
private Button LeftButton;
private Button RightButton;
private JScrollPane scroll;
private JTextArea south;
private MyActionListener MAL;
public static void main(String[] args) {
A_18_c l = new A_18_c("Aufgabe18c");
}
public A_18_c(String title) {
super(title);
setSize(300, 150);
this.setLocation(300, 300);
this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
MAL = new MyActionListener(south);
south = new JTextArea(5, 20);
south.setEditable(false);
JScrollPane sroll = new JScrollPane(south);
this.add(sroll, BorderLayout.SOUTH);
LeftButton = new Button("Left Button");
LeftButton.setOpaque(true);
LeftButton.addActionListener(MAL);
this.add(LeftButton, BorderLayout.WEST);
RightButton = new Button("Right Button");
RightButton.setOpaque(true);
RightButton.addActionListener(MAL);
this.add(RightButton, BorderLayout.EAST);
setVisible(true);
}
}
MyActionListener:
package Aufgabe_18;
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class MyActionListener implements ActionListener{
private final JTextArea south;
public MyActionListener(JTextArea south)
{
this.south = south;
}
private void setTextLeftButton(JTextArea south){
south.append("Left Button \n");
}
private void setTextRightButton(JTextArea south){
south.append("Right Button \n");
}
@Override
public void actionPerformed(ActionEvent e) {
String a;
Object src = e.getSource();
Button b = null;
b = (Button) src;
a = b.getString();
if (a == "LeftButton")
setTextRightButton(south);
if (a == "RightButton")
setTextRightButton(south);
}
}
Я ожидаю, что JTextArea напишет, какая кнопка была нажата, но после нажатия ничего не происходит. Ошибки не появляются.