Package org.zkoss.zktest.test2

Source Code of org.zkoss.zktest.test2.F3259969

/* F3259969.java

  Purpose:
   
  Description:
   
  History:
    Thu Mar 31 11:02:04 TST 2011, Created by tomyeh

Copyright (C) 2011 Potix Corporation. All Rights Reserved.

*/
package org.zkoss.zktest.test2;

import java.util.Map;

import org.zkoss.zk.ui.Page;
import org.zkoss.zk.ui.UiException;
import org.zkoss.zk.ui.util.Initiator;
import org.zkoss.zul.Label;

/**
* Test of system-level initiator
* @author tomyeh
*/
public class F3259969 implements Initiator {
  public void doInit(Page page, Map args) throws Exception {
  }
  public void doAfterCompose(Page page) throws Exception {
    new Label("system initiator called").setPage(page);
  }
  public boolean doCatch(Throwable ex) throws Exception {
    return false;
  }
  public void doFinally() throws Exception {
  }
}
TOP

Related Classes of org.zkoss.zktest.test2.F3259969

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.