Uses of Interface
org.zkoss.zk.ui.Page

Packages that use Page
org.zkoss.zhtml.impl Classes used to implement ZHTML component set. 
org.zkoss.zk.au Requests and responsed used to communicate between client and server, called asynchronous updates. 
org.zkoss.zk.au.out The responses of asynchronous updates (sent from server to client). 
org.zkoss.zk.scripting Scripting intepreter relevant classes, including interpreter, namespace and so on. 
org.zkoss.zk.scripting.bsh BeanShell - Java Interpreter. 
org.zkoss.zk.scripting.groovy Groovy Interpreter 
org.zkoss.zk.scripting.jruby JRuby interpreter 
org.zkoss.zk.scripting.jython Jython interpreter 
org.zkoss.zk.scripting.rhino Rhino - JavaScript Interpreter org.zkoss.scripting.bsf.rhino.RhinoInterpreter An implementation based on Rhino org.zkoss.scripting.bsf.rhino.RhinoInterpreter An implementation based on Rhino but went through BSF. 
org.zkoss.zk.scripting.util Utilities for implementing interpters and namespaces. 
org.zkoss.zk.ui Interfaces of the common user-interfaces, such as Page and Component
org.zkoss.zk.ui.event The org.zkoss.zk.ui and org.zkoss.zk.ui.event packages are the only packages that component and application developers need to know. 
org.zkoss.zk.ui.ext Additional Interfaces that might be implemented by special components, such as AfterCompose
org.zkoss.zk.ui.http HTTP relevant utilities and servlets for implementing user interfaces (implementation only). 
org.zkoss.zk.ui.impl Implementation of user interfaces and factories (implementation only). 
org.zkoss.zk.ui.metainfo Metainfo representing pages and languages (implementation only). 
org.zkoss.zk.ui.metainfo.impl The implementation class of the metainfos. 
org.zkoss.zk.ui.sys Internal interfaces of user interfaces and factories (behind the scene). 
org.zkoss.zk.ui.util Utilities to handle user interfaces. 
org.zkoss.zk.xel ZK XEL utilities. 
org.zkoss.zk.xel.impl XEL utilities for implementation only. 
org.zkoss.zkplus.databind The DataBinder used for binding ZK UI component and the backend data bean. 
org.zkoss.zkplus.liferay   
org.zkoss.zml The ZK XML Component Set. 
org.zkoss.zml.impl ZML implementation classes 
org.zkoss.zul ZUL component set that are used for HTML-based clients. 
org.zkoss.zul.impl Classes used to implement ZUL Component Set (implementation only). 
 

Uses of Page in org.zkoss.zhtml.impl
 

Methods in org.zkoss.zhtml.impl with parameters of type Page
static void PageRenderer.afterRenderHtml(Execution exec, Page page, java.io.Writer out, java.lang.Object param)
          Ends and cleans up the rendering of a complete ZHTML page.
static java.lang.Object PageRenderer.beforeRenderHtml(Execution exec, Page page, java.io.Writer out)
          Prepares for rendering a complete ZHTML page.
 void PageRenderer.render(Page page, java.io.Writer out)
           
protected  void PageRenderer.renderComplete(Execution exec, Page page, java.io.Writer out)
          Renders the page if isComplete() is true.
protected  void PageRenderer.renderPage(Execution exec, Page page, java.io.Writer out, boolean au)
          Renders the page if isComplete() is false.
 

Uses of Page in org.zkoss.zk.au
 

Methods in org.zkoss.zk.au that return Page
 Page AuRequest.getPage()
          Returns the page that this request is applied for, or null if this reqeuest is a general request -- regardless any page or component.
 

Constructors in org.zkoss.zk.au with parameters of type Page
AuResponse(java.lang.String cmd, Page depends, java.lang.Object data)
          Constructs a response with single data.
AuResponse(java.lang.String cmd, Page depends, java.lang.Object[] data)
          Constructs a response with multiple data.
 

Uses of Page in org.zkoss.zk.au.out
 

Constructors in org.zkoss.zk.au.out with parameters of type Page
AuAppendChild(Page page, java.lang.String content)
           
AuOuter(Page page, java.lang.String content)
           
AuRemove(Page page)
           
 

Uses of Page in org.zkoss.zk.scripting
 

Methods in org.zkoss.zk.scripting that return Page
 Page Interpreter.getOwner()
          Returns the owner of this interpreter.
 Page Namespace.getOwnerPage()
          Deprecated. Returns the page that owns this namespace, or null if not owned by any page.
 

Methods in org.zkoss.zk.scripting with parameters of type Page
static Namespace Namespaces.beforeInterpret(java.util.Map backup, Page page, boolean pushNS)
          Deprecated. As of release 3.6.1, it is replaced with Namespaces.beforeInterpret(Page).
static Namespace Namespaces.beforeInterpret(Page page)
          Deprecated. As of release 5.0, replaced with Scopes.
static Namespace Namespaces.getCurrent(Page page)
          Deprecated. As of release 5.0, replaced with Scopes.
 void Interpreter.init(Page owner, java.lang.String zslang)
          Initializes the interpreter.
static Interpreter Interpreters.newInterpreter(java.lang.String zslang, Page owner)
          Returns the interpter for the specified language name.
 

Uses of Page in org.zkoss.zk.scripting.bsh
 

Methods in org.zkoss.zk.scripting.bsh with parameters of type Page
 void BSHInterpreter.init(Page owner, java.lang.String zslang)
           
 

Uses of Page in org.zkoss.zk.scripting.groovy
 

Methods in org.zkoss.zk.scripting.groovy with parameters of type Page
 void GroovyInterpreter.init(Page owner, java.lang.String zslang)
           
 

Uses of Page in org.zkoss.zk.scripting.jruby
 

Methods in org.zkoss.zk.scripting.jruby with parameters of type Page
 void JRubyInterpreter.init(Page owner, java.lang.String zslang)
           
 

Uses of Page in org.zkoss.zk.scripting.jython
 

Methods in org.zkoss.zk.scripting.jython with parameters of type Page
 void JythonInterpreter.init(Page owner, java.lang.String zslang)
           
 

Uses of Page in org.zkoss.zk.scripting.rhino
 

Methods in org.zkoss.zk.scripting.rhino with parameters of type Page
 void RhinoInterpreter.init(Page owner, java.lang.String zslang)
           
 

Uses of Page in org.zkoss.zk.scripting.util
 

Methods in org.zkoss.zk.scripting.util that return Page
 Page GenericInterpreter.getOwner()
           
 

Methods in org.zkoss.zk.scripting.util with parameters of type Page
 void GenericInterpreter.init(Page owner, java.lang.String zslang)
           
 

Uses of Page in org.zkoss.zk.ui
 

Classes in org.zkoss.zk.ui that implement Page
 class AbstractPage
          A skeletal implementation of Page.
 

Methods in org.zkoss.zk.ui that return Page
 Page Component.getPage()
          Returns the page that this component belongs to, or null if it doesn't belong to any page.
 Page AbstractComponent.getPage()
           
 Page Desktop.getPage(java.lang.String pageId)
          Returns the page of the specified ID.
 Page Desktop.getPageIfAny(java.lang.String pageId)
          Returns the page of the specified ID, or null if no such page.
 

Methods in org.zkoss.zk.ui with parameters of type Page
protected  void AbstractComponent.addMoved(Component oldparent, Page oldpg, Page newpg)
          Called when this component is moved from the specified parent and/or page to the new page.
static java.lang.Object Executions.evaluate(Page page, java.lang.String expr, java.lang.Class expectedType)
          Evluates the specified expression with the resolver of the current execution (Executions.getCurrent()).
 java.lang.Object Execution.evaluate(Page page, java.lang.String expr, java.lang.Class expectedType)
          Evluates the specified expression with ${link #getVariableResolver} and getFunctionMapper() of the specified page.
static Evaluator Executions.getEvaluator(Page page, java.lang.Class expfcls)
          Returns the evaluator of the current execution.
 Evaluator Execution.getEvaluator(Page page, java.lang.Class expfcls)
          Returns the evaluator (never null).
static java.lang.Object Components.getImplicit(Page page, Component comp, java.lang.String name)
          Retuns the implicit object of the specified name, or null if not found.
static java.lang.Object Components.getImplicit(Page page, java.lang.String name)
          Retuns the implicit object of the specified name, or null if not found.
 boolean Execution.isAsyncUpdate(Page page)
          Returns whether this execution is asynchronous updating the specified page (thru ZK Update Engine).
 void AbstractComponent.onPageAttached(Page newpage, Page oldpage)
          Default: handles special event listeners.
 void AbstractComponent.onPageDetached(Page page)
          Default: handles special event listeners.
 void Richlet.service(Page page)
          Called by the richlet container to create components when the specified page is visited and created.
 void AbstractComponent.sessionDidActivate(Page page)
           
 void AbstractComponent.sessionWillPassivate(Page page)
           
 void HtmlMacroComponent.setPage(Page page)
          Changes the page.
 void Component.setPage(Page page)
          Sets what page this component belongs to.
 void AbstractComponent.setPage(Page page)
           
 void Component.setPageBefore(Page page, Component refRoot)
          Sets what page this component belongs to, and insert this component right before the reference component.
 void AbstractComponent.setPageBefore(Page page, Component refRoot)
           
static void Components.wireVariables(Page page, java.lang.Object controller)
          Wire accessible variables of the specified page into a controller Java object.
static void Components.wireVariables(Page page, java.lang.Object controller, char separator)
          Wire accessible variable objects of the specified page with a custom separator.
 

Uses of Page in org.zkoss.zk.ui.event
 

Methods in org.zkoss.zk.ui.event that return Page
 Page Event.getPage()
          Returns the page owning this event, or null if broadcast.
 

Uses of Page in org.zkoss.zk.ui.ext
 

Methods in org.zkoss.zk.ui.ext that return Page
 Page Includer.getChildPage()
          Returns the child page.
 

Methods in org.zkoss.zk.ui.ext with parameters of type Page
static Scope Scopes.getCurrent(Page page)
          Returns the current scope.
 void Includer.setChildPage(Page page)
          Sets the child page.
 

Uses of Page in org.zkoss.zk.ui.http
 

Methods in org.zkoss.zk.ui.http that return Page
static Page WebManager.newPage(UiFactory uf, RequestInfo ri, PageDefinition pagedef, javax.servlet.ServletResponse response, java.lang.String path)
          Creates a page.
static Page WebManager.newPage(UiFactory uf, RequestInfo ri, Richlet richlet, javax.servlet.ServletResponse response, java.lang.String path)
          Creates a page.
 

Methods in org.zkoss.zk.ui.http with parameters of type Page
 java.lang.Object ExecutionImpl.evaluate(Page page, java.lang.String expr, java.lang.Class expectedType)
           
 Evaluator ExecutionImpl.getEvaluator(Page page, java.lang.Class expfcls)
           
 

Constructors in org.zkoss.zk.ui.http with parameters of type Page
ExecutionImpl(javax.servlet.ServletContext ctx, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Desktop desktop, Page creating)
          Constructs an execution for HTTP request.
 

Uses of Page in org.zkoss.zk.ui.impl
 

Classes in org.zkoss.zk.ui.impl that implement Page
 class PageImpl
          An implmentation of Page and PageCtrl.
 

Methods in org.zkoss.zk.ui.impl that return Page
 Page AbstractExecution.getCurrentPage()
           
 Page DesktopImpl.getPage(java.lang.String pageId)
           
 Page DesktopImpl.getPageIfAny(java.lang.String pageId)
           
 Page AbstractUiFactory.newPage(RequestInfo ri, PageDefinition pagedef, java.lang.String path)
           
 Page AbstractUiFactory.newPage(RequestInfo ri, Richlet richlet, java.lang.String path)
           
 

Methods in org.zkoss.zk.ui.impl with parameters of type Page
 void UiEngineImpl.addInvalidate(Page page)
           
 void UiEngineImpl.addMoved(Component comp, Component oldparent, Page oldpg, Page newpg)
           
 void DesktopImpl.addPage(Page page)
           
 void DesktopImpl.afterComponentAttached(Component comp, Page page)
           
 void DesktopImpl.afterComponentDetached(Component comp, Page prevpage)
           
 Component[] UiEngineImpl.createComponents(Execution exec, PageDefinition pagedef, Page page, Component parent, java.util.Map arg)
           
 void ZScriptInitiator.doAfterCompose(Page page)
           
 ComponentInfo MultiComposer.doBeforeCompose(Page page, Component parent, ComponentInfo compInfo)
           
 void ZScriptInitiator.doInit(Page page, java.util.Map args)
           
 void UiEngineImpl.execNewPage(Execution exec, PageDefinition pagedef, Page page, java.io.Writer out)
           
 void UiEngineImpl.execNewPage(Execution exec, Richlet richlet, Page page, java.io.Writer out)
           
 void UiEngineImpl.execNewPage0(Execution exec, PageDefinition pagedef, Richlet richlet, Page page, java.io.Writer out)
          It assumes exactly one of pagedef and richlet is not null.
static Composer MultiComposer.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.
 boolean AbstractExecution.isAsyncUpdate(Page page)
           
 Component AbstractUiFactory.newComponent(Page page, Component parent, ComponentDefinition compdef, java.lang.String clsnm)
           
 Component AbstractUiFactory.newComponent(Page page, Component parent, ComponentInfo compInfo)
           
 void UiEngineImpl.recycleDesktop(Execution exec, Page page, java.io.Writer out)
           
 void DesktopImpl.removePage(Page page)
           
 void AbstractExecution.setCurrentPage(Page curpage)
           
 

Constructors in org.zkoss.zk.ui.impl with parameters of type Page
AbstractExecution(Desktop desktop, Page creating)
          Constructs an execution.
 

Uses of Page in org.zkoss.zk.ui.metainfo
 

Methods in org.zkoss.zk.ui.metainfo with parameters of type Page
 void VariablesInfo.apply(Page page)
          Applies the variable element against the page.
 void AttributesInfo.apply(Page page)
          Applies the custom attributes.
 java.util.List PageDefinition.doInit(Page page)
          Returns a list of all Initiator and invokes its Initiator.doInit(org.zkoss.zk.ui.Page, java.util.Map) before returning.
 java.util.Map ComponentDefinition.evalProperties(java.util.Map propmap, Page owner, Component parent)
          Evaluates and retrieves properties to the specified map.
 java.util.Map ComponentInfo.evalProperties(java.util.Map propmap, Page owner, Component parent, boolean defIncluded)
          Evaluates and retrieves properties to the specified map from ComponentDefinition (and ComponentInfo).
 java.lang.String ZScript.getContent(Page page, Component comp)
          Returns the content of zscript.
 java.lang.String PageDefinition.getContentType(Page page)
          Returns the content type (after evaluation), or null to use the device default.
 java.lang.String PageDefinition.getDocType(Page page)
          Returns the doc type (<!
 java.lang.String PageDefinition.getFirstLine(Page page)
          Returns the first line to be generated to the output (after evaluation), or null if nothing to generate.
 java.lang.String PageDefinition.getForwardURI(Page page)
          Returns the URI to forward to, or null if not to foward.
 java.lang.String PageDefinition.getHeaders(Page page)
          Converts all header definitions (added by PageDefinition.addHeaderInfo(org.zkoss.zk.ui.metainfo.HeaderInfo, boolean)) to HTML tags, no matter that shall be shown before or after ZK's CSS/JS headers.
 java.lang.String PageDefinition.getHeaders(Page page, boolean before)
          Converts the header definitions (added by PageDefinition.addHeaderInfo(org.zkoss.zk.ui.metainfo.HeaderInfo, boolean)) to HTML tags.
 java.lang.String PageDefinition.getRootAttributes(Page page)
          Converts the header definitions (added by PageDefinition.setRootAttribute(java.lang.String, java.lang.String)) to the attributes of the root element.
 java.lang.String TextInfo.getValue(Page page)
          Returns the value after evaluation (might be null).
 java.lang.Object Property.getValue(Page page)
          Evaluates the value to an Object.
 void PageDefinition.init(Page page, boolean evalHeaders)
          Initializes a page after execution is activated.
 void PageDefinition.initXelContext(Page page)
          Initializes XEL context for the specified page.
 boolean ZScript.isEffective(Page page)
           
 boolean WidgetListener.isEffective(Page page)
           
 boolean VariablesInfo.isEffective(Page page)
           
 boolean Property.isEffective(Page page)
           
 boolean HeaderInfo.isEffective(Page page)
           
 boolean EventHandler.isEffective(Page page)
           
 boolean ComponentInfo.isEffective(Page page)
           
 boolean AttributesInfo.isEffective(Page page)
           
 FunctionMapper FunctionMapperInfo.newFunctionMapper(Evaluator eval, Page page)
          Creates and returns the function mapper for the specified evaluator and page.
 FunctionMapper FunctionMapperInfo.newFunctionMapper(PageDefinition pgdef, Page page)
          Creates and returns the function mapper for the specified pagedefinition and page.
 Initiator InitiatorInfo.newInitiator(Evaluator eval, Page page)
          Creates and returns the initiator, or null if no initiator is resolved.
 Initiator InitiatorInfo.newInitiator(PageDefinition pgdef, Page page)
          Creates and returns the initiator, or null if no initiator is resolved.
 Component ComponentInfo.newInstance(Page page)
          Creates an component based on this info (never null).
 Component NativeInfo.newInstance(Page page, Component parent)
           
 Component ComponentInfo.newInstance(Page page, Component parent)
          Creates an component based on this info (never null).
 Component ComponentDefinition.newInstance(Page page, java.lang.String clsnm)
          Creates an component of this definition.
 VariableResolver VariableResolverInfo.newVariableResolver(Evaluator eval, Page page)
          Creates and returns the variable resolver for the specified page.
 VariableResolver VariableResolverInfo.newVariableResolver(PageDefinition pgdef, Page page)
          Creates and returns the variable resolver for the specified page.
 java.lang.Object[] ZkInfo.resolveCase(Page page, Component comp)
          Returns the case condition's value, or null if no case is specified (i.e., ZkInfo.withCase() is fasle.
 Composer ComponentInfo.resolveComposer(Page page, Component comp)
          Returns the composer for this info, or nuull if not available.
 ForEach ComponentInfo.resolveForEach(Page page, Component comp)
          Returns the forEach object if the forEach attribute is defined (or ComponentInfo.setForEach(java.lang.String, java.lang.String, java.lang.String) is called).
 java.lang.Class ComponentInfo.resolveImplementationClass(Page page)
          Resolves and returns the class for the component represented by this info (never null).
 java.lang.Class ComponentInfo.resolveImplementationClass(Page page, Component parent)
          Resolves and returns the class for the component represented by this info (never null).
 java.lang.Class ComponentDefinition.resolveImplementationClass(Page page, java.lang.String clsnm)
          Resolves and returns the class that implements the component.
 java.lang.Object ZkInfo.resolveSwitch(Page page, Component comp)
          Returns the switch condition's value; evaluate EL expression if any.
 java.lang.String ForwardInfo.resolveURI(PageDefinition pgdef, Page page)
          Evaluates and returns the URI, or null if not to foward.
 java.lang.String HeaderInfo.toHTML(Page page)
          Returns as HTML tag(s) representing this header element.
 java.lang.String HeaderInfo.toHTML(PageDefinition pgdef, Page page)
          Deprecated. As of release 5.0.0, replaced with HeaderInfo.toHTML(Page).
 

Uses of Page in org.zkoss.zk.ui.metainfo.impl
 

Methods in org.zkoss.zk.ui.metainfo.impl with parameters of type Page
 java.util.Map ComponentDefinitionImpl.evalProperties(java.util.Map propmap, Page owner, Component parent)
           
 Component ComponentDefinitionImpl.newInstance(Page page, java.lang.String clsnm)
           
 java.lang.Class ComponentDefinitionImpl.resolveImplementationClass(Page page, java.lang.String clsnm)
           
 

Uses of Page in org.zkoss.zk.ui.sys
 

Methods in org.zkoss.zk.ui.sys that return Page
 Page ExecutionCtrl.getCurrentPage()
          Returns the current page.
 Page UiFactory.newPage(RequestInfo ri, PageDefinition pagedef, java.lang.String path)
          Creates an instance of Page for the specified page definition.
 Page UiFactory.newPage(RequestInfo ri, Richlet richlet, java.lang.String path)
          Creates an instance of Page for the specified richlet.
 

Methods in org.zkoss.zk.ui.sys with parameters of type Page
 void UiEngine.addInvalidate(Page page)
          Invalidates the page to cause all of its components to redraw.
 void UiEngine.addMoved(Component comp, Component oldparent, Page oldpg, Page newpg)
          Called to update (redraw) a component, when a component is moved.
 void DesktopCtrl.addPage(Page page)
          Adds a page to this desktop.
 void DesktopCtrl.afterComponentAttached(Component comp, Page page)
          Invokes UiLifeCycle.afterComponentAttached(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Page).
 void DesktopCtrl.afterComponentDetached(Component comp, Page prevpage)
          Invokes UiLifeCycle.afterComponentDetached(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Page).
 Component[] UiEngine.createComponents(Execution exec, PageDefinition pagedef, Page page, Component parent, java.util.Map arg)
          Creates components from the specified page and definition.
 void UiEngine.execNewPage(Execution exec, PageDefinition pagedef, Page page, java.io.Writer out)
          Creates components specified in the given page definition.
 void UiEngine.execNewPage(Execution exec, Richlet richlet, Page page, java.io.Writer out)
          Invoke Richlet.service(org.zkoss.zk.ui.Page), when a new page is creates upon visiting a richlet.
 Component UiFactory.newComponent(Page page, Component parent, ComponentDefinition compdef, java.lang.String clsnm)
          Creates and initializes a component based on the specified ComponentDefinition.
 Component UiFactory.newComponent(Page page, Component parent, ComponentInfo compInfo)
          Creates and initializes a component based on the specified ComponentInfo.
 java.lang.String IdGenerator.nextPageUuid(Page page)
          Returns the next page UUID for the specified page, or null to generate the default UUID.
 void ComponentCtrl.onPageAttached(Page newpage, Page oldpage)
          Called when this component is attached to a page.
 void ComponentCtrl.onPageDetached(Page page)
          Called when this component is detached from a page.
static java.lang.String HtmlPageRenders.outDocType(Execution exec, Page page)
          Returns the doc type, or null if not available.
static java.lang.String HtmlPageRenders.outFirstLine(Execution exec, Page page)
          Returns the first line to be generated to the output, or null if no special first line.
static java.lang.String HtmlPageRenders.outHeaders(Execution exec, Page page, boolean before)
          Returns the content of the specified condition that will be placed inside the header element of the specified page, or null if it was generated before.
static java.lang.String HtmlPageRenders.outHeaderZkTags(Execution exec, Page page)
          Generates and returns the ZK specific HTML tags including the headers defined in the specified page, or null if it was generated before.
static void HtmlPageRenders.outPageContent(Execution exec, Page page, java.io.Writer out, boolean au)
          Returns the HTML content representing a page.
 void PageRenderPatch.patchRender(RequestInfo reqInfo, Page page, java.io.Writer result, java.io.Writer out)
          Called after rendering to patch the result.
 void UiEngine.recycleDesktop(Execution exec, Page page, java.io.Writer out)
          Reuse the desktop and generate the outout.
 void DesktopCtrl.removePage(Page page)
          Removes a page from this desktop.
 void PageRenderer.render(Page page, java.io.Writer out)
          Renders the page.
 void ComponentCtrl.sessionDidActivate(Page page)
          Notification that the session, which owns this component, has just been activated (aka., deserialized).
 void ComponentCtrl.sessionWillPassivate(Page page)
          Notification that the session, which owns this component, is about to be passivated (aka., serialized).
static void HtmlPageRenders.setContentType(Execution exec, Page page)
          Sets the content type to the specified execution for the given page.
 void ExecutionCtrl.setCurrentPage(Page page)
          Sets the current page.
 

Uses of Page in org.zkoss.zk.ui.util
 

Fields in org.zkoss.zk.ui.util declared as Page
protected  Page GenericAutowireComposer.page
          Implicit Object; the page.
 

Methods in org.zkoss.zk.ui.util with parameters of type Page
 void UiLifeCycle.afterComponentAttached(Component comp, Page page)
          Called after a component is attached to a page.
 void Configuration.afterComponentAttached(Component comp, Page page)
          Invokes UiLifeCycle.afterComponentAttached(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Page) when a component is attached to a page.
 void UiLifeCycle.afterComponentDetached(Component comp, Page prevpage)
          Called after a component is detached from a page.
 void Configuration.afterComponentDetached(Component comp, Page prevpage)
          Invokes UiLifeCycle.afterComponentDetached(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Page) when a component is detached from a page.
 void UiLifeCycle.afterPageAttached(Page page, Desktop desktop)
          Called after a page is attached to a desktop.
 void Configuration.afterPageAttached(Page page, Desktop desktop)
          Invokes UiLifeCycle.afterPageAttached(org.zkoss.zk.ui.Page, org.zkoss.zk.ui.Desktop) when a compnent's parent is changed.
 void UiLifeCycle.afterPageDetached(Page page, Desktop prevdesktop)
          Called after a page is detached to a desktop.
 void Configuration.afterPageDetached(Page page, Desktop prevdesktop)
          Invokes UiLifeCycle.afterPageDetached(org.zkoss.zk.ui.Page, org.zkoss.zk.ui.Desktop) when a compnent's parent is changed.
 void PageActivationListener.didActivate(Page page)
          Called when a session has just been activated (and its value has been deserialized).
 void PageSerializationListener.didDeserialize(Page page)
          Called when a page has de-serialized this object back.
 void Initiator.doAfterCompose(Page page)
          Called after all components are created (aka., composed), and before any event is processed.
 void Composition.doAfterCompose(Page page)
           
 void InitiatorExt.doAfterCompose(Page page, Component[] comps)
          Called after all components are created (aka., composed), and before any event is processed.
 void Composition.doAfterCompose(Page page, Component[] comps)
           
 ComponentInfo GenericComposer.doBeforeCompose(Page page, Component parent, ComponentInfo compInfo)
           
 ComponentInfo ComposerExt.doBeforeCompose(Page page, Component parent, ComponentInfo compInfo)
          Invokes before composing a component.
 void Initiator.doInit(Page page, java.util.Map args)
          Does the initializes before the page is evaluated.
 void Composition.doInit(Page page, java.util.Map args)
           
 Composer Configuration.getComposer(Page page)
          Returns the system-level composer or null if none is registered.
static ForEach ForEachImpl.getInstance(EvaluatorRef evalr, Page page, ExValue[] expr, ExValue begin, ExValue end)
          Returns an instance that represents the iterator for the specified collection, or null if expr is null or empty.
static ForEach ForEachImpl.getInstance(EvaluatorRef evalr, Page page, java.lang.String expr, java.lang.String begin, java.lang.String end)
          Returns an instance that represents the iterator for the specified collection, or null if expr is null or empty.
 boolean ConditionImpl.isEffective(Evaluator eval, Page page)
          Used to evaluate whether it is effective.
 boolean Condition.isEffective(Page page)
          Used to evaluate whether it is effective.
 void PageActivationListener.willPassivate(Page page)
          Called when a session is about to be passivated (and then serialize its value).
 void PageSerializationListener.willSerialize(Page page)
          Called when a page is going to serialize this object.
 

Constructors in org.zkoss.zk.ui.util with parameters of type Page
ForEachImpl(EvaluatorRef evalr, Page page, ExValue[] expr, ExValue begin, ExValue end)
          Constructor.
ForEachImpl(EvaluatorRef evalr, Page page, java.lang.String expr, java.lang.String begin, java.lang.String end)
          Constructor.
 

Uses of Page in org.zkoss.zk.xel
 

Methods in org.zkoss.zk.xel with parameters of type Page
static java.lang.Object Evaluators.evaluate(Evaluator eval, Page page, java.lang.String expr, java.lang.Class expectedClass)
          Evaluates the specified expression (which might or might not contain ${).
 java.lang.Object Evaluator.evaluate(Page page, Expression expression)
          Evaluates the expression.
 java.lang.Object ExValue.getValue(Evaluator eval, Page page)
          Returns the value after evaluation.
 

Uses of Page in org.zkoss.zk.xel.impl
 

Methods in org.zkoss.zk.xel.impl with parameters of type Page
 java.lang.Object SimpleEvaluator.evaluate(Page page, Expression expression)
           
static java.lang.Object Utils.evaluateComposite(Evaluator eval, Page page, java.lang.Object expr)
          Evaluates the composite expression parsed by Utils.parseComposite(java.lang.String, java.lang.Class, int) against a page.
 

Uses of Page in org.zkoss.zkplus.databind
 

Methods in org.zkoss.zkplus.databind with parameters of type Page
 void AnnotateDataBinderInit.doAfterCompose(Page page)
           
 void AnnotateDataBinderInit.doAfterCompose(Page page, Component[] comps)
           
 void AnnotateDataBinderInit.doInit(Page page, java.util.Map args)
           
 void AnnotateDataBinder.init(Page page, boolean defaultConfig)
          Initialization that read all binding annotations of the components inside the specified page.
 

Constructors in org.zkoss.zkplus.databind with parameters of type Page
AnnotateDataBinder(Page page)
          Constructor that read all binding annotations of the components inside the specified page.
AnnotateDataBinder(Page page, boolean defaultConfig)
          Constructor that read all binding annotations of the components inside the specified page.
 

Uses of Page in org.zkoss.zkplus.liferay
 

Methods in org.zkoss.zkplus.liferay with parameters of type Page
 void JQueryRenderPatch.patchRender(RequestInfo reqInfo, Page page, java.io.Writer result, java.io.Writer out)
           
 

Uses of Page in org.zkoss.zml
 

Methods in org.zkoss.zml with parameters of type Page
 void XmlMacroComponent.setPage(Page page)
          Changes the page.
 

Uses of Page in org.zkoss.zml.impl
 

Methods in org.zkoss.zml.impl with parameters of type Page
 void PageRenderer.render(Page page, java.io.Writer out)
           
protected  void PageRenderer.renderComplete(Execution exec, Page page, java.io.Writer out)
          Renders the page if isComplete() is true.
protected  void PageRenderer.renderPage(Execution exec, Page page, java.io.Writer out)
          Renders the page if isComplete() is false.
 

Uses of Page in org.zkoss.zul
 

Methods in org.zkoss.zul that return Page
 Page Include.getChildPage()
           
 

Methods in org.zkoss.zul with parameters of type Page
protected  void Listitem.addMoved(Component oldparent, Page oldpg, Page newpg)
           
 void Listbox.onPageAttached(Page newpage, Page oldpage)
           
 void Grid.onPageAttached(Page newpage, Page oldpage)
           
 void Window.onPageDetached(Page page)
           
 void Listbox.sessionDidActivate(Page page)
           
 void Grid.sessionDidActivate(Page page)
           
 void Listbox.sessionWillPassivate(Page page)
           
 void Grid.sessionWillPassivate(Page page)
           
 void Include.setChildPage(Page page)
           
 

Uses of Page in org.zkoss.zul.impl
 

Methods in org.zkoss.zul.impl with parameters of type Page
 void PageRenderer.render(Page page, java.io.Writer out)
           
protected  void PageRenderer.renderComplete(Execution exec, Page page, java.io.Writer out)
          Renders the page if isComplete() is true.
protected  void PageRenderer.renderDesktop(Execution exec, Page page, java.io.Writer out)
          Renders the desktop and the page.
protected  void PageRenderer.renderPage(Execution exec, Page page, java.io.Writer out, boolean au)
          Renders the page if isComplete() is false.
 



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