public abstract class GenericInitiator extends java.lang.Object implements Initiator, InitiatorExt
Constructor and Description |
---|
GenericInitiator() |
Modifier and Type | Method and Description |
---|---|
void |
doAfterCompose(Page page)
It is used only for backward compatibility.
|
void |
doAfterCompose(Page page,
Component[] comps)
Called after all components are created (a.k.a., composed),
and before any event is processed.
|
boolean |
doCatch(java.lang.Throwable ex)
Does nothing but returns false so the exception will be thrown.
|
void |
doFinally()
Do the cleanup after the page has been evaluated.
|
void |
doInit(Page page,
java.util.Map<java.lang.String,java.lang.Object> args)
Does the initializes before the page is evaluated.
|
public void doInit(Page page, java.util.Map<java.lang.String,java.lang.Object> args) throws java.lang.Exception
Initiator
Note: when it is called, Page.getDesktop()
,
Page.getId()
and Page.getTitle()
all return null, since
the page is not initialized yet.
To get the current desktop, you have to use
Execution.getDesktop()
(from
Executions.getCurrent()
) instead.
On the other hand, you can set the page's ID, title or style in
this method (to override the declarations in the page definition)
by Page.setId(java.lang.String)
, Page.setTitle(java.lang.String)
and Page.setStyle(java.lang.String)
.
In additions, Page.getRequestPath()
and Page.getAttribute(java.lang.String, int)
are all available.
doInit
in interface Initiator
page
- the page being evaluatedargs
- a map of arguments.
Prior to 3.6.2, it is an array. To upgrade, use args.get("arg0")
instead of args[0], args.get("arg1") instead of args[1] and so on.
Of course, it is better to have a more meaningful name for
each argument.
If no argument is specified, args is an empty map (never null).java.lang.Exception
public void doAfterCompose(Page page, Component[] comps) throws java.lang.Exception
InitiatorExt
It won't be called if an un-caught exception occurs when creating components.
doAfterCompose
in interface InitiatorExt
page
- the page that new components are attached to. It is the same
as Initiator.doInit(org.zkoss.zk.ui.Page, java.util.Map<java.lang.String, java.lang.Object>)
's page argument.comps
- the root components being created (never null, but the length
might be zero).
Note: It is not necessary the same as Page.getRoots()
, since
this method might be called thru Executions.createComponents(java.lang.String, org.zkoss.zk.ui.Component, java.util.Map<?, ?>)
.java.lang.Exception
public void doAfterCompose(Page page)
public boolean doCatch(java.lang.Throwable ex) throws java.lang.Exception
doCatch
in interface InitiatorExt
ex
- the exception being thrownjava.lang.Exception
public void doFinally() throws java.lang.Exception
InitiatorExt
Initiator.doInit(org.zkoss.zk.ui.Page, java.util.Map<java.lang.String, java.lang.Object>)
throws an exception.
However,it is always called no matter whether InitiatorExt.doCatch(java.lang.Throwable)
is called.
An exception thrown in this method is simply logged. It has no effect on the execution.
doFinally
in interface InitiatorExt
java.lang.Exception
Copyright © 2005-2021 Potix Corporation. All Rights Reserved.