javax.swing.text.JTextComponent.addAncestorListener()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(141)

本文整理了Java中javax.swing.text.JTextComponent.addAncestorListener()方法的一些代码示例,展示了JTextComponent.addAncestorListener()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTextComponent.addAncestorListener()方法的具体详情如下:
包路径:javax.swing.text.JTextComponent
类名称:JTextComponent
方法名:addAncestorListener

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);
  }

相关文章

JTextComponent类方法