com.google.gwt.user.client.ui.Widget.doDetachChildren()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(122)

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

Widget.doDetachChildren介绍

[英]If a widget contains one or more child widgets that are not in the logical widget hierarchy (the child is physically connected only on the DOM level), it must override this method and call #onDetach() for each of its child widgets.
[中]如果一个小部件包含一个或多个不在逻辑小部件层次结构中的子小部件(该子部件仅在DOM级别上进行物理连接),则它必须重写此方法,并为其每个子小部件调用#ondeach()。

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

doDetachChildren();
} finally {

代码示例来源:origin: com.extjs/gxt

@Override
protected void doDetachChildren() {
 super.doDetachChildren();
 if (attachables != null) {
  for (ComponentAttachable a : attachables) {
   a.doDetach();
  }
 }
}

代码示例来源:origin: net.wetheinter/gwt-user

doDetachChildren();
} finally {

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

doDetachChildren();
} finally {

相关文章