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

Packages that use Page
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.fn A collections of functions used in EL expressions (implementation only). 
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.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.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. 
 

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.String data)
          Constructs a response with multiple data.
AuResponse(java.lang.String cmd, Page depends, java.lang.String[] 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)
           
AuRemove(Page page)
           
AuReplace(Page page, java.lang.String content)
           
 

Uses of Page in org.zkoss.zk.fn
 

Methods in org.zkoss.zk.fn with parameters of type Page
static java.lang.String ZkFns.outContentType(Page page)
          Returns the content type (never null).
static java.lang.String ZkFns.outDocType(Page page)
          Returns the doc type, or null if not available.
static java.lang.String ZkFns.outFirstLine(Page page)
          Returns the first line to be generated to the output, or null if no special first line.
static java.lang.String ZkFns.outHeaders(Page page)
          Returns the content that will be placed inside the header element of the specified page.
static java.lang.String ZkFns.outRootAttributes(Page page)
          Returns the content that will be generated as the attributes of the root element of the specified 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.
 

Methods in org.zkoss.zk.scripting with parameters of type Page
static Namespace Namespaces.beforeInterpret(java.util.Map backup, Page page, boolean pushNS)
          Prepares builtin variable before calling interpret(java.lang.String, java.lang.String, org.zkoss.zk.scripting.Namespace) or a method that might be implemented with zscript.
static Namespace Namespaces.getCurrent(Page page)
          Returns the current namespace.
 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.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
 

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).
 boolean Execution.isAsyncUpdate(Page page)
          Returns whether this execution is asynchronous updating the specified page (thru ZK Update Engine).
 void Component.onPageAttached(Page newpage, Page oldpage)
          Called when this component is attached to a page.
 void AbstractComponent.onPageAttached(Page newpage, Page oldpage)
          Default: handles special event listeners.
 void Component.onPageDetached(Page page)
          Called when this component is detached from a page.
 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)
           
 

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.http
 

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)
           
 Component[] UiEngineImpl.createComponents(Execution exec, PageDefinition pagedef, Page page, Component parent, java.util.Map arg)
           
 void ZScriptInitiator.doAfterCompose(Page page)
           
 void ZScriptInitiator.doInit(Page page, java.lang.Object[] 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.
 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 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.lang.Object[]) 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.Object[] InitiatorInfo.getArguments(PageDefinition pgdef, Page page)
          Returns the arguments array (by evaluating EL if necessary).
 Composer ComponentInfo.getComposer(Page page)
          Returns the composer for this info, or null if not available.
 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.
 ForEach ComponentInfo.getForEach(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.String PageDefinition.getHeaders(Page page)
          Converts the header definitions (added by PageDefinition.addHeaderInfo(org.zkoss.zk.ui.metainfo.HeaderInfo)) 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.
 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 VariablesInfo.isEffective(Page page)
           
 boolean Property.isEffective(Page page)
           
 boolean EventHandler.isEffective(Page page)
           
 boolean ComponentInfo.isEffective(Page page)
           
 boolean AttributesInfo.isEffective(Page page)
           
 Initiator InitiatorInfo.newInitiator(PageDefinition pgdef, Page page)
          Creaetes and returns the initiator.
 Component NativeInfo.newInstance(Page page)
           
 Component ComponentInfo.newInstance(Page page)
          Creates an component based on this info (never null).
 Component ComponentDefinition.newInstance(Page page, java.lang.String clsnm)
          Creates an component of this definition.
 org.zkoss.xel.VariableResolver VariableResolverInfo.newVariableResolver(PageDefinition pgdef, Page page)
          Creaetes and returns the variable resolver for the specified page.
 java.lang.Class ComponentInfo.resolveImplementationClass(Page page)
          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.String HeaderInfo.toHTML(PageDefinition pgdef, Page page)
          Returns as HTML tag(s) representing this header element.
 

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.
 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 DesktopCtrl.removePage(Page page)
          Removes a page from this desktop.
 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).
 void ExecutionCtrl.setCurrentPage(Page page)
          Sets the current page.
 

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

Methods in org.zkoss.zk.ui.util with parameters of type Page
 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 InitiatorExt.doAfterCompose(Page page, Component[] comps)
          Called after all components are created (aka., composed), and before any event is processed.
 ComponentInfo ComposerExt.doBeforeCompose(Page page, Component parent, ComponentInfo compInfo)
          Invokes before composing a component.
 void Initiator.doInit(Page page, java.lang.Object[] args)
          Does the initializes before the page is evaluated.
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 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, 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
 java.lang.Object Evaluator.evaluate(Page page, org.zkoss.xel.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, org.zkoss.xel.Expression expression)
           
 



Copyright © 2005-2007 Potix Corporation. All Rights Reserved.