一个类的JButton如何将文本附加到另一个类的JTextArea

时间:2015-12-12 09:46:36

标签: java swing oop

我正在尝试将addText()方法(或append()方法)的JTextArea方法添加到位于另一个班级的JButton

我不想在JButton中创建新对象或将方法设为静态,我已在此论坛上阅读了一些答案,但我无法将其应用到我的代码中,所以请帮助我修复此代码:

class Frame extends JFrame {
    public Frame() {
        TextArea textarea = new TextArea();
        Panel panel = new Panel();
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        setPreferredSize(dim());
        setLayout(new BorderLayout());
        add(textarea, BorderLayout.CENTER);
        add(panel, BorderLayout.SOUTH);
        setVisible(true);
        pack();
        setLocationRelativeTo(null);
    }
    private Dimension dim() {
        Toolkit kit = Toolkit.getDefaultToolkit();
        Dimension d = kit.getScreenSize();
        int width = (int)(d.getWidth() / 2);
        int height = (int)(d.getHeight() / 2);
        return new Dimension(width, height);
    }
}
class TextArea extends JTextArea {
    public TextArea() {}
    public void addText(String s) {
        append(s);
    }
}
class Panel extends JPanel {
    public Panel() {
        Button button = new Button();
        button.setText("Start");
        button.addActionListener(new Button());
        add(button);
    }
    class Button extends JButton implements ActionListener {
        public Button() {}@Override
        public void actionPerformed(ActionEvent e) {}
    }
}

1 个答案:

答案 0 :(得分:2)

使用匿名类并删除Button类。如果您已经在主代码中使用JButton,我认为不需要从JButton扩展课程。

解决方案

button.addActionListener(new ActionListener(){
    @Override
    public void actionPerformed(ActionEvent e){
        // setText() or append();
    }
});