Uses of Interface
org.zkoss.zk.ui.util.Composer
-
Packages that use Composer Package Description org.zkoss.zk.ui org.zkoss.zk.ui.impl org.zkoss.zk.ui.metainfo org.zkoss.zk.ui.select org.zkoss.zk.ui.sys org.zkoss.zk.ui.util -
-
Uses of Composer in org.zkoss.zk.ui
Methods in org.zkoss.zk.ui that return Composer Modifier and Type Method Description static ComposerComponents. getComposer(Component comp)Returns the composer object, or null if not found. -
Uses of Composer in org.zkoss.zk.ui.impl
Classes in org.zkoss.zk.ui.impl that implement Composer Modifier and Type Class Description classMultiComposer<T extends Component>To proxy a collection of composers.Methods in org.zkoss.zk.ui.impl that return Composer Modifier and Type Method Description static ComposerMultiComposer. getComposer(Page page, java.lang.Object[] ary)Returns an instance of composer to represent the specified array of composers, or null if no composer is specified.ComposerAbstractUiFactory. newComposer(Page page, java.lang.Class klass)Instantiates a composer of the given class.ComposerAbstractUiFactory. newComposer(Page page, java.lang.String className)Instantiates a composer of the given class name.static ComposerUtils. newComposer(Page page, java.lang.Object o)Instantiates a composer of the given object.Constructors in org.zkoss.zk.ui.impl with parameters of type Composer Constructor Description MultiComposer(Composer<T>[] cs)The constructor. -
Uses of Composer in org.zkoss.zk.ui.metainfo
Methods in org.zkoss.zk.ui.metainfo that return Composer Modifier and Type Method Description ComposerComponentInfo. resolveComposer(Page page, Component comp)Returns the composer for this info, or null if not available. -
Uses of Composer in org.zkoss.zk.ui.select
Classes in org.zkoss.zk.ui.select that implement Composer Modifier and Type Class Description classSelectorComposer<T extends Component>A composer analogous to GenericForwardComposer. -
Uses of Composer in org.zkoss.zk.ui.sys
Methods in org.zkoss.zk.ui.sys that return Composer Modifier and Type Method Description ComposerUiFactory. newComposer(Page page, java.lang.Class klass)Creates and initializes a composer of the given class and page.ComposerUiFactory. newComposer(Page page, java.lang.String className)Creates and initializes a composer of the given class name and page. -
Uses of Composer in org.zkoss.zk.ui.util
Classes in org.zkoss.zk.ui.util that implement Composer Modifier and Type Class Description classGenericAutowireComposer<T extends Component>A skeletal composer that you can extend and write intuitive onXxx event handler methods with "auto-wired" accessible variable objects such as implicit objects, components, and external resolvable variables in a ZK zuml page.classGenericComposer<T extends Component>A skeletal composer that you can extend and write intuitive onXxx event handler methods; this class will registers onXxx events to the supervised component automatically.classGenericForwardComposer<T extends Component>A skeletal composer that you can extend and write intuitive onXxx$myid event handler methods with auto event forwarding and "auto-wired" accessible variable objects such as embedded objects, components, and external resolvable variables in a ZK zuml page; this class will add forward condition to the myid source component and forward source onXxx event received by the source myid component to the target onXxx$myid event (as defined in this composer) of the supervised target component; of course it will also registers onXxx$myid events to the supervised component and wire all accessible variable objects to this composer by calling setXxx() method or set xxx field value directly per the variable name.Methods in org.zkoss.zk.ui.util that return Composer Modifier and Type Method Description Composer<?>Configuration. getComposer(Page page)Returns the system-level composer or null if none is registered.Methods in org.zkoss.zk.ui.util with parameters of type Composer Modifier and Type Method Description Component[]Template. create(Component parent, Component insertBefore, org.zkoss.xel.VariableResolver resolver, Composer composer)Creates the components defined in this template.
-