Examples of WrongValueException


Examples of org.zkoss.zk.ui.WrongValueException

  /** Sets the number of rows to span this header.
   * <p>It is the same as the rowspan attribute of HTML TD tag.
   */
  public void setRowspan(int rowspan) throws WrongValueException {
    if (rowspan <= 0)
      throw new WrongValueException("Positive only");
    if (_rowspan != rowspan) {
      _rowspan = rowspan;
      smartUpdate("rowspan", _rowspan);
    }
  }
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.