Package org.zkoss.zk.ui.util

Examples of org.zkoss.zk.ui.util.ExecutionCleanup.cleanup()


  public void invokeExecutionCleanups(Execution exec, Execution parent, List errs) {
    if (_execCleans != null) {
      for (Iterator it = _execCleans.iterator(); it.hasNext();) {
        final ExecutionCleanup listener = (ExecutionCleanup)it.next();
        try {
          listener.cleanup(exec, parent, errs);
        } catch (Throwable ex) {
          log.error("Failed to invoke "+listener, ex);
          if (errs != null) errs.add(ex);
        }
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.