Package org.zkoss.zk.ui.util
Interface FullComposer
-
public interface FullComposer
A decorative interface used withComposer
(and/orComposerExt
) to indicate that it requires the full control. By full control we mean, in addition to the component it is associated, the method ofComposer
/ComposerExt
will be called when composing every its child component.For example,
<window apply="FooComposer"> <div> <textbox/> </div> </window>
If FooComposer implements both
Composer
andFullComposer
, then itsComposer.doAfterCompose(T)
is called after textbox, div and window are composed.If FooComposer implements only
Composer
, itsComposer.doAfterCompose(T)
is called only after window is composed.- Since:
- 3.6.1
- Author:
- tomyeh