当前位置: 技术问答>java相关
Java Event!!!事件!!
来源: 互联网 发布时间:2014-12-28
本文导语: JTextField 用 什么 事件 实现 TextField 中的 textValueChanged(TextEvent) ?? 是用DocumentListener 吗?? public void changedUpdate(DocumentEvent e) { 没有反应!!! } public void removeUpdate(DocumentEvent e) {...
JTextField 用 什么 事件 实现 TextField 中的
textValueChanged(TextEvent) ??
是用DocumentListener 吗??
public void changedUpdate(DocumentEvent e) {
没有反应!!!
}
public void removeUpdate(DocumentEvent e) {}
public void insertUpdate(DocumentEvent e) {}
textValueChanged(TextEvent) ??
是用DocumentListener 吗??
public void changedUpdate(DocumentEvent e) {
没有反应!!!
}
public void removeUpdate(DocumentEvent e) {}
public void insertUpdate(DocumentEvent e) {}
|
public class REDemo extends Applet implements TextListener
{
...
fieldRE.addTextListener(this);
fieldMatch.addTextListener(this);
// Initial UI update
textValueChanged(null);
....
public void textValueChanged(TextEvent e)
{
// If it's a generic update or the regexp changed...
if (e == null || e.getSource() == fieldRE)
{
// Update regexp
updateRE(fieldRE.getText());
}
// We always need to update the match results
updateMatch(fieldMatch.getText());
}
...
}
{
...
fieldRE.addTextListener(this);
fieldMatch.addTextListener(this);
// Initial UI update
textValueChanged(null);
....
public void textValueChanged(TextEvent e)
{
// If it's a generic update or the regexp changed...
if (e == null || e.getSource() == fieldRE)
{
// Update regexp
updateRE(fieldRE.getText());
}
// We always need to update the match results
updateMatch(fieldMatch.getText());
}
...
}