org.zkoss.bind.tracker.impl
Class BindUiLifeCycle

java.lang.Object
  extended by org.zkoss.bind.tracker.impl.BindUiLifeCycle
All Implemented Interfaces:
UiLifeCycle

public class BindUiLifeCycle
extends java.lang.Object
implements UiLifeCycle

Track Binding CRUD and dependent tracking management.

Since:
6.0.0
Author:
henrichen

Nested Class Summary
static interface BindUiLifeCycle.Extension
          An interface used to extend the BindUiLifeCycle.
 
Constructor Summary
BindUiLifeCycle()
           
 
Method Summary
 void afterComponentAttached(Component comp, Page page)
          Called after a component is attached to a page.
 void afterComponentDetached(Component comp, Page prevpage)
          Called after a component is detached from a page.
 void afterComponentMoved(Component parent, Component child, Component prevparent)
          Called after the parent/children relation is changed.
 void afterPageAttached(Page page, Desktop desktop)
          Called after a page is attached to a desktop.
 void afterPageDetached(Page page, Desktop prevdesktop)
          Called after a page is detached to a desktop.
protected  void handleComponentAttached(Component comp)
           
protected  void handleComponentDetached(Component comp)
           
static void markLifeCycleHandling(Component comp)
          Internal use only.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BindUiLifeCycle

public BindUiLifeCycle()
Method Detail

afterComponentAttached

public void afterComponentAttached(Component comp,
                                   Page page)
Description copied from interface: UiLifeCycle
Called after a component is attached to a page.

If a tree of components are attached to a page, this method called only against the root one. For example, if component A has a child B and A is attached to page P, then aferComponentAttached(A, P) is called.

Note: exception thrown by this method is ignored (but logged).

Specified by:
afterComponentAttached in interface UiLifeCycle

handleComponentAttached

protected void handleComponentAttached(Component comp)

afterComponentDetached

public void afterComponentDetached(Component comp,
                                   Page prevpage)
Description copied from interface: UiLifeCycle
Called after a component is detached from a page.

If a tree of components are detached to a page, this method called only against the root one. For example, if component A has a child B and A is detached from page P, then aferComponentDetached(A, P) is called.

Note: exception thrown by this method is ignored (but logged).

Specified by:
afterComponentDetached in interface UiLifeCycle
prevpage - the previous page that comp belongs to.

handleComponentDetached

protected void handleComponentDetached(Component comp)

afterComponentMoved

public void afterComponentMoved(Component parent,
                                Component child,
                                Component prevparent)
Description copied from interface: UiLifeCycle
Called after the parent/children relation is changed.

If a tree of components has become children of the other component, this method called only against the root one. For example, if component A has a child B and A becomes a child of component C, then aferComponentAttached(C, A, null) is called.

Note: exception thrown by this method is ignored (but logged).

Specified by:
afterComponentMoved in interface UiLifeCycle
prevparent - the previous parent. If it is the same as parent, comp is moved in the same parent.

afterPageAttached

public void afterPageAttached(Page page,
                              Desktop desktop)
Description copied from interface: UiLifeCycle
Called after a page is attached to a desktop.

Note: exception thrown by this method is ignored (but logged).

Specified by:
afterPageAttached in interface UiLifeCycle

afterPageDetached

public void afterPageDetached(Page page,
                              Desktop prevdesktop)
Description copied from interface: UiLifeCycle
Called after a page is detached to a desktop.

Specified by:
afterPageDetached in interface UiLifeCycle

markLifeCycleHandling

public static void markLifeCycleHandling(Component comp)
Internal use only. Mark a component and it's children are handling already in current execution. So, if the component attach to component tree(cause #afterComponentAttached(Component, Page), BindUiLifeCycle will not process it again.



Copyright © 2005-2011 Potix Corporation. All Rights Reserved. SourceForge.net Logo