本文整理了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
[英]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 {
内容来源于网络,如有侵权,请联系作者删除!