当前位置: 技术问答>java相关
有关Java中事件
来源: 互联网 发布时间:2015-05-08
本文导语: 当在一个记事本中敲入字符时,依次发生的是 KeyPressed,KeyTyped,KeyReleased.其中有 CaretUpdate(有CaretListener产生)事件,不知 在那一时间发生, ta=new JTextArea(); ta.setWrapStyleWord(true); ta.addCaretListener(this); ta.addKey...
当在一个记事本中敲入字符时,依次发生的是
KeyPressed,KeyTyped,KeyReleased.其中有
CaretUpdate(有CaretListener产生)事件,不知
在那一时间发生,
ta=new JTextArea();
ta.setWrapStyleWord(true);
ta.addCaretListener(this);
ta.addKeyListener(this);
那位英雄能给我解释一下,谢谢!!!!
KeyPressed,KeyTyped,KeyReleased.其中有
CaretUpdate(有CaretListener产生)事件,不知
在那一时间发生,
ta=new JTextArea();
ta.setWrapStyleWord(true);
ta.addCaretListener(this);
ta.addKeyListener(this);
那位英雄能给我解释一下,谢谢!!!!
|
当在一个记事本中敲入字符时,依次发生的是
KeyPressed,KeyTyped,KeyReleased.其中有
CaretUpdate(有CaretListener产生)事件,不知
在那一时间发生,
ta=new JTextArea();
ta.setWrapStyleWord(true);
ta.addCaretListener(this);
ta.addKeyListener(this);
那位英雄能给我解释一下,谢谢!!!!
public interface CaretListener
extends EventListener
Listener for changes in the caret position of a text component.
--------------------------------------------------------------------------------
Method Summary
void caretUpdate(CaretEvent e)
Called when the caret position is updated.
KeyPressed,KeyTyped,KeyReleased.其中有
CaretUpdate(有CaretListener产生)事件,不知
在那一时间发生,
ta=new JTextArea();
ta.setWrapStyleWord(true);
ta.addCaretListener(this);
ta.addKeyListener(this);
那位英雄能给我解释一下,谢谢!!!!
public interface CaretListener
extends EventListener
Listener for changes in the caret position of a text component.
--------------------------------------------------------------------------------
Method Summary
void caretUpdate(CaretEvent e)
Called when the caret position is updated.