Package org.apache.empire.db

Examples of org.apache.empire.db.DBTableColumn.checkValue()


   
    DBRecord rec = getRecord();
    DBTableColumn col = (DBTableColumn) rec.getDBColumn(rec
        .getFieldIndex(getAttributes().get("column").toString()));
    try {
      col.checkValue(inputComponent.getValue());
    } catch (Exception e) {
      FacesContext.getCurrentInstance().addMessage(getClientId(), new FacesMessage(e.getLocalizedMessage()));
      this.setValid(false);
    }
    super.validate(context);
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.