ActionEvent事件

最近学了ActionEvent事件,可是有个错误一直想不明白

public class Example9_7
{
public static void main(String args[ ])
{
WindowActionEvent win=new WindowActionEvent();
PoliceListen police=new PoliceListen( );
win.setMyCommandListener(police);
win.setBounds(100,100,460,360);
win.setTitle(“处理ActionEvent事件”);
}
}`

import java.awt.;
import javax.swing.
;
public class WindowActionEvent extends JFrame
{
JTextField inputText;
JTextArea textShow;
JButton button;
MyCommandListener listener;
public WindowActionEvent( )
{
init( );
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
void init( )
{
setLayout(new FlowLayout());
inputText=new JTextField(10);
button=new JButton(“确定”);
textShow=new JTextArea(9,30);
add(inputText);
add(button);
add(new JScrollPane(textShow));
}
void MyCommandListener(MyCommandListener listener)
{
this.listener=listener;
listener.setJTextField(inputText);
listener.setJTextArea(textShow);
inputText.addActionListener(listener);
button.addActionListener(listener);
}
}

import java.awt.event.;
import javax.swing.
;
public class PoliceListen implements MyCommandListener
{
JTextField textInput;
JTextArea textShow;
JButton button;
public void setJTextField(JTextField text)
{
textInput=text;
}
public void setJTextArea(JTextArea area)
{
textShow=area;
}
public void setJButton(JButton b)
{
button=b;
}
public void actionPerformed(ActionEvent e)
{
String str=textInput.getText( );
if(e.getSource()==button)
{
textShow.append(“含有java”+str.contains(“java”)+"\n");
}
else if(e.getSource()==textInput)
{
textShow.append(“长度:”+str.length( )+"\n");
}
}
}

import javax.swing.;
import java.awt.event.
; //Java核心库包
public interface MyCommandListener extends ActionListener
{
public void setJTextField(JTextField text);
public void setJTextArea(JTextArea area);
}

运行过程出现错误:
在这里插入图片描述我试了很多遍,一直显示找不到符号,也找到过相同的文章,改了这一行还是不行,到底是什么原因呢?

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值