如何通过在不同对象中创建的事件编辑变量?

时间:2012-11-14 21:30:45

标签: java object actionlistener

以下是一些包含2个对象的示例代码。用于轻松创建面板和侦听器的面板对象,以及用于执行代码的框架对象。目的是让代码显示在answertext字段中按下了哪个按钮。但是,我没有看到我可以编译的方式,因为我在哪里使answertext超出了我需要的其他东西的范围。

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;



class myPanel extends JPanel implements ActionListener  {

public myPanel(int start, int numOfButtons){

    setLayout(new FlowLayout(FlowLayout.LEFT, 10, 20));

    JButton buttons[] = new JButton[numOfButtons];

    for (int k = start; k < start + numOfButtons; k++){


            buttons[ k ] = new JButton("Button " + k);
            this.add( buttons[k] );
            buttons[ k ].addActionListener(this); 
    }

}

public void actionPerformed(ActionEvent e)
{
    myFrame.setText(e.getActionCommand()); 
}

}


public class myFrame extends JFrame{



public myFrame()
{

super("myFrame");



myPanel buttonPanel1 =  new myPanel(1, 3);
myPanel buttonPanel2 =  new myPanel(4, 3);

JPanel answerPanel = new JPanel();

JTextField answertext;
answertext = new JTextField(10);
answertext.setEditable(false);
answerPanel.add(answertext);



setSize(300,200);
setLocationRelativeTo(null);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout( new GridLayout(3,1) );
setTitle("ShowPressedButton");

add(buttonPanel1);
add(answerPanel);       
add(buttonPanel2);

pack();
setVisible(true);   
}


public void setText(string input)
{
    answertext = input;
}


public static void main(String[] args) {
    myFrame showButton = new myFrame();

    showButton.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );

}




}

我设置了一个公共方法来设置answertext,以便mypanel可以设置它,但编译器说它在我尝试编译时找不到该方法

2 个答案:

答案 0 :(得分:0)

在mypanel类中实现此功能

public JTextField get(){
  return answerText;
}

然后在myframe中,使用你的mypanel类对象调用上面的方法

答案 1 :(得分:0)

将一些变量添加到myPanel类

class myPanel extends JPanel implements ActionListener {
   private List<ActionListener> actionListeners = new ArrayList<ActionListener>();

   public myPanel(final int start, final int numOfButtons) {
     // same code 
   }

   public void actionPerformed(final ActionEvent e) {
     for (final ActionListener listener : actionListeners) {
       listener.actionPerformed(e);
     }
   } 

   public void addActionListener(final ActionListener listener) {
     actionListeners.add(listener)
   } 
   // todo: remove / reset ActionListener ...
}

在此之后,你可以在你的类myFrame中添加一个ActionListener,它知道JTextfield并可以操作它。将此新ActionListener添加到myPanel框架后,您应该知道按下了哪个按钮