示例#1
0
文件: Tabbox.java 项目: KevinLong/zk
 public void onChildRemoved(Component child) {
   if (_tabs == child) {
     removeTabsListeners();
     _tabs = null;
     _seltab = null;
   } else if (_tabpanels == child) {
     _tabpanels = null;
   } else if (_toolbar == child) {
     _toolbar = null;
   }
   super.onChildRemoved(child);
 }
示例#2
0
文件: Treechildren.java 项目: dije/zk
 public void onChildRemoved(Component child) {
   super.onChildRemoved(child);
   addVisibleItemCount(-((Treeitem) child).getVisibleItemCount());
 }
示例#3
0
 public void onChildRemoved(Component child) {
   if (child instanceof Caption) _caption = null;
   super.onChildRemoved(child);
 }