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

Packages that use Execution
org.zkoss.zk.fn A collections of functions used in EL expressions (implementation only). 
org.zkoss.zk.ui Interfaces of the common user-interfaces, such as Page and Component
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.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.impl XEL utilities for implementation only. 
org.zkoss.zkdemo.test   
org.zkoss.zkdemo.userguide   
org.zkoss.zkplus.hibernate Utilities to support Hibernate
org.zkoss.zkplus.jpa Utilities to support JPA 
 

Uses of Execution in org.zkoss.zk.fn
 

Methods in org.zkoss.zk.fn with parameters of type Execution
static java.util.List ZkFns.getStyleSheets(Execution exec)
          Returns a list of StyleSheet that shall be generated to the client for the specified execution.
 

Uses of Execution in org.zkoss.zk.ui
 

Methods in org.zkoss.zk.ui that return Execution
static Execution Executions.getCurrent()
          Returns the current execution.
 Execution Desktop.getExecution()
          Returns the execution, or null if this desktop is not under seving any execution (aka., not locked).
 

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

Classes in org.zkoss.zk.ui.http that implement Execution
 class ExecutionImpl
          An Execution implementation for HTTP request and response.
 

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

Classes in org.zkoss.zk.ui.impl that implement Execution
 class AbstractExecution
          A skeletal implementation of Execution.
 

Methods in org.zkoss.zk.ui.impl that return Execution
 Execution DesktopImpl.getExecution()
           
 

Methods in org.zkoss.zk.ui.impl with parameters of type Execution
 void UiEngineImpl.activate(Execution exec)
           
 void UiEngineImpl.beginUpdate(Execution exec)
           
 Component[] UiEngineImpl.createComponents(Execution exec, PageDefinition pagedef, Page page, Component parent, java.util.Map arg)
           
 void UiEngineImpl.deactivate(Execution exec)
           
 void UiEngineImpl.endUpdate(Execution exec, AuWriter out)
           
 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.
 void UiEngineImpl.execRecover(Execution exec, FailoverManager failover)
           
 void UiEngineImpl.execUpdate(Execution exec, java.util.List requests, AuWriter out)
           
 void DesktopImpl.invokeExecutionCleanups(Execution exec, Execution parent, java.util.List errs)
           
 void DesktopImpl.invokeExecutionInits(Execution exec, Execution parent)
           
 boolean UiEngineImpl.isRequestDuplicate(Execution exec, AuWriter out)
           
 void DesktopImpl.setExecution(Execution exec)
           
 

Constructors in org.zkoss.zk.ui.impl with parameters of type Execution
RequestInfoImpl(Execution exec, Locator locator)
          Construcotr.
 

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

Methods in org.zkoss.zk.ui.sys that return Execution
 Execution Visualizer.getExecution()
          Returns the execution that this visualizer is associated with.
 

Methods in org.zkoss.zk.ui.sys with parameters of type Execution
 void UiEngine.activate(Execution exec)
          Activates an execution such that you can access a component.
 void UiEngine.beginUpdate(Execution exec)
          Activates and prepare for asynchronous update
 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.deactivate(Execution exec)
          Deactivates an execution, such that other threads could activate and access components.
 void UiEngine.endUpdate(Execution exec, AuWriter out)
          Executes posted events, deactive and ends the asynchronous update.
 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.
 void UiEngine.execRecover(Execution exec, FailoverManager failover)
          Executes the recovering.
 void UiEngine.execUpdate(Execution exec, java.util.List requests, AuWriter out)
          Executs an asynchronous update to a component (or page).
 void DesktopCtrl.invokeExecutionCleanups(Execution exec, Execution parent, java.util.List errs)
          Invokes ExecutionCleanup.cleanup(org.zkoss.zk.ui.Execution, org.zkoss.zk.ui.Execution, java.util.List) for each relevant listener registered by Desktop.addListener(java.lang.Object).
 void DesktopCtrl.invokeExecutionInits(Execution exec, Execution parent)
          Invokes ExecutionInit.init(org.zkoss.zk.ui.Execution, org.zkoss.zk.ui.Execution) for each relevant listener registered by Desktop.addListener(java.lang.Object).
 boolean UiEngine.isRequestDuplicate(Execution exec, AuWriter out)
          Checks whether the request is duplicated.
 void FailoverManager.recover(Session sess, Execution exec, Desktop desktop)
          Recovers the specified desktop.
static void ExecutionsCtrl.setCurrent(Execution exec)
          Sets the execution for the current thread.
 void DesktopCtrl.setExecution(Execution exec)
          Sets the execution (used to represent a lock).
 

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

Fields in org.zkoss.zk.ui.util declared as Execution
protected  Execution GenericAutowireComposer.execution
          Implicit Object; the current execution.
 

Methods in org.zkoss.zk.ui.util with parameters of type Execution
 void ExecutionCleanup.cleanup(Execution exec, Execution parent, java.util.List errs)
          called when an execution is about to be destroyed.
 java.util.Collection ThemeProvider.getThemeURIs(Execution exec, java.util.List uris)
          Returns a list of the theme's URIs (Collection<String>) of the specified execution, or null if no theme shall be generated.
 void ExecutionInit.init(Execution exec, Execution parent)
          Called when an exection is created and initialized.
 void Configuration.invokeExecutionCleanups(Execution exec, Execution parent, java.util.List errs)
          Invokes ExecutionCleanup.cleanup(org.zkoss.zk.ui.Execution, org.zkoss.zk.ui.Execution, java.util.List) for each relevant listener registered by Configuration.addListener(java.lang.Class).
 void Configuration.invokeExecutionInits(Execution exec, Execution parent)
          Invokes ExecutionInit.init(org.zkoss.zk.ui.Execution, org.zkoss.zk.ui.Execution) for each relevant listener registered by Configuration.addListener(java.lang.Class).
 void PerformanceMeter.requestCompleteAtClient(java.lang.String requestId, Execution exec, long time)
          Called to notify when the client has completed the processing of the response.
 void PerformanceMeter.requestCompleteAtServer(java.lang.String requestId, Execution exec, long time)
          Called to notify when the server has completed the processing of the request.
 void PerformanceMeter.requestReceiveAtClient(java.lang.String requestId, Execution exec, long time)
          Called to notify when the client has received the response (but not processed yet).
 void PerformanceMeter.requestStartAtClient(java.lang.String requestId, Execution exec, long time)
          Called to notify when the client starts to send the request to server.
 void PerformanceMeter.requestStartAtServer(java.lang.String requestId, Execution exec, long time)
          Called to notify when the server receives the request.
 

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

Constructors in org.zkoss.zk.xel.impl with parameters of type Execution
ExecutionResolver(Execution exec, VariableResolver parent)
          Constructs a resolver with a parent and a page.
 

Uses of Execution in org.zkoss.zkdemo.test
 

Methods in org.zkoss.zkdemo.test with parameters of type Execution
 void MyExecCleanup.cleanup(Execution exec, Execution parent, java.util.List errs)
           
 void DumbFailoverManager.recover(Session sess, Execution exec, Desktop desktop)
           
 void PerformanceMeter.requestCompleteAtClient(java.lang.String requestId, Execution exec, long time)
           
 void PerformanceMeter.requestCompleteAtServer(java.lang.String requestId, Execution exec, long time)
           
 void PerformanceMeter.requestReceiveAtClient(java.lang.String requestId, Execution exec, long time)
           
 void PerformanceMeter.requestStartAtClient(java.lang.String requestId, Execution exec, long time)
           
 void PerformanceMeter.requestStartAtServer(java.lang.String requestId, Execution exec, long time)
           
 

Uses of Execution in org.zkoss.zkdemo.userguide
 

Methods in org.zkoss.zkdemo.userguide with parameters of type Execution
static java.lang.String FontSizeThemeProvider.getFontSizeCookie(Execution exe)
          get font size value from cookie
static java.lang.String FontSizeThemeProvider.getSkinCookie(Execution exe)
          get skin value from cookie
 java.util.Collection FontSizeThemeProvider.getThemeURIs(Execution exe, java.util.List uris)
           
static void FontSizeThemeProvider.setFondSizeCookie(Execution exe, java.lang.String fontSize)
          set font size value to cookie
static void FontSizeThemeProvider.setSkinCookie(Execution exe, java.lang.String skin)
          set skin value to cookie
 

Uses of Execution in org.zkoss.zkplus.hibernate
 

Methods in org.zkoss.zkplus.hibernate with parameters of type Execution
 void OpenSessionInViewListener.cleanup(Execution exec, Execution parent, java.util.List errs)
           
 void HibernateSessionContextListener.cleanup(Execution exec, Execution parent, java.util.List errs)
           
protected  void OpenSessionInViewListener.handleOtherException(Execution exec, java.lang.Throwable ex)
          Default other exception (other than StaleObjectStateException) handler.
protected  void OpenSessionInViewListener.handleStaleObjectStateException(Execution exec, org.hibernate.StaleObjectStateException ex)
          Default StaleObjectStateException handler.
 void OpenSessionInViewListener.init(Execution exec, Execution parent)
           
 void HibernateSessionContextListener.init(Execution exec, Execution parent)
           
 

Uses of Execution in org.zkoss.zkplus.jpa
 

Methods in org.zkoss.zkplus.jpa with parameters of type Execution
 void OpenEntityManagerInViewListener.cleanup(Execution exec, Execution parent, java.util.List errs)
           
protected  void OpenEntityManagerInViewListener.handleException(Execution exec, java.lang.Throwable ex)
          Default exception handler.
 void OpenEntityManagerInViewListener.init(Execution exec, Execution parent)
           
 



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