org.zkoss.zk.ui.util
Interface FullComposer


public interface FullComposer

A decorative interface used with Composer (and/or ComposerExt) to indicate that it requires the full control. By full control we mean, in addition to the component it is associated, the method of Composer/ComposerExt will be called when composing every its child component.

For example,


<window apply="FooComposer">
  <div>
    <textbox/>
  </div>
</window>
 

If FooComposer implements both Composer and FullComposer, then its Composer.doAfterCompose(T) is called after textbox, div and window are composed.

If FooComposer implements only Composer, its Composer.doAfterCompose(T) is called only after window is composed.

Since:
3.6.1
Author:
tomyeh



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