本文整理了Java中javax.swing.text.JTextComponent.addAncestorListener()
方法的一些代码示例,展示了JTextComponent.addAncestorListener()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTextComponent.addAncestorListener()
方法的具体详情如下:
包路径:javax.swing.text.JTextComponent
类名称:JTextComponent
方法名:addAncestorListener
暂无
代码示例来源:origin: org.codehaus.mevenide/nb-project
/** Creates a new instance of TextComponentUpdater */
public TextComponentUpdater(JTextComponent comp, JLabel label) {
component = comp;
component.addAncestorListener(this);
this.label = label;
}
代码示例来源:origin: com.threerings/nenya
/**
* Makes the specified component the new grabber of key typed events
* that look like they're chat-related per {@link #isChatCharacter}.
*/
public void pushChatGrabber (JTextComponent comp)
{
// note this component as the new chat grabber
_curChatGrabber = comp;
// add the component to the list of grabbers
_chatGrabbers.addLast(comp);
comp.addAncestorListener(this);
// and request to give the new component the focus since that's a
// sensible thing to do as it's aiming to nab all key events
// henceforth
comp.requestFocusInWindow();
}
代码示例来源:origin: threerings/nenya
/**
* Makes the specified component the new grabber of key typed events
* that look like they're chat-related per {@link #isChatCharacter}.
*/
public void pushChatGrabber (JTextComponent comp)
{
// note this component as the new chat grabber
_curChatGrabber = comp;
// add the component to the list of grabbers
_chatGrabbers.addLast(comp);
comp.addAncestorListener(this);
// and request to give the new component the focus since that's a
// sensible thing to do as it's aiming to nab all key events
// henceforth
comp.requestFocusInWindow();
}
代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-spellchecker
/** Creates a new instance of ComponentPeer */
private ComponentPeer(JTextComponent pane) {
this.pane = pane;
// reschedule();
pane.addPropertyChangeListener(this);
pane.addCaretListener(this);
pane.addAncestorListener(this);
document = pane.getDocument();
document.addDocumentListener(this);
ancestorAdded(null);
}
内容来源于网络,如有侵权,请联系作者删除!