javax.swing.JComponent.removeHierarchyBoundsListener()方法的使用及代码示例

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

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

JComponent.removeHierarchyBoundsListener介绍

暂无

代码示例

代码示例来源:origin: org.netbeans.modules/org-netbeans-lib-profiler-ui

void unregisterForComponent(JComponent component) {
  if (component == null) {
    return;
  }
  component.removeComponentListener(this);
  component.removeKeyListener(this);
  component.removeFocusListener(this);
  component.removePropertyChangeListener(this);
  component.removeHierarchyListener(this);
  component.removeHierarchyBoundsListener(this);
}

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-dlight-visualizers

void unregisterForComponent(JComponent component) {
  if (component == null) {
    return;
  }
  component.removeComponentListener(this);
  component.removeKeyListener(this);
  component.removeFocusListener(this);
  component.removePropertyChangeListener(this);
  component.removeHierarchyListener(this);
  component.removeHierarchyBoundsListener(this);
}

代码示例来源:origin: com.google.code.validationframework/validationframework-swing

/**
 * Detaches the decoration from the decorated component.
 */
private void detach() {
  // Do not call setVisible(false) here: that would make it invisible by default (detach() is called in attach())
  if (decoratedComponent != null) {
    decoratedComponent.removeComponentListener(decoratedComponentTracker);
    decoratedComponent.removeAncestorListener(decoratedComponentTracker);
    decoratedComponent.removeHierarchyBoundsListener(decoratedComponentTracker);
    decoratedComponent.removeHierarchyListener(decoratedComponentTracker);
    decoratedComponent.removePropertyChangeListener("enabled", decoratedComponentTracker);
    decoratedComponent.removePropertyChangeListener("ancestor", decoratedComponentTracker);
    decoratedComponent = null;
    detachFromLayeredPane();
  }
}

相关文章

JComponent类方法