JComponent.java 文件源码

java
阅读 23 收藏 0 点赞 0 评论 0

项目:javify 作者:
/**
 * Receives notification when a child component is removed from the
 * JComponent and fires a PropertyChangeEvent on listeners registered
 * with the AccessibleJComponent with a property name of
 * {@link AccessibleContext#ACCESSIBLE_CHILD_PROPERTY}.
 *
 * @param event the container event
 */
public void componentRemoved(ContainerEvent event)
{
  Component c = event.getChild();
  if (c != null && c instanceof Accessible)
    {
      AccessibleContext childCtx = c.getAccessibleContext();
      AccessibleJComponent.this.firePropertyChange
        (AccessibleContext.ACCESSIBLE_CHILD_PROPERTY, childCtx, null);
    }
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号