예제 #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
파일: Window.java 프로젝트: tmillsclare/zk
 public void onChildRemoved(Component child) {
   if (child instanceof Caption) _caption = null;
   super.onChildRemoved(child);
 }