Package org.xulfaces.rubis.admin.dao

Examples of org.xulfaces.rubis.admin.dao.RegionDAO


  public Object getAsObject(FacesContext context, UIComponent component, String value) {
    if(value!=null){
      int regionId = Integer.parseInt(value);
      ValueBinding valueBinding = context.getApplication().createValueBinding("#{regionDAO}");
      RegionDAO regionDAO = (RegionDAO) valueBinding.getValue(context);
      try {
        return regionDAO.loadRegion(new Integer(regionId));
      } catch (RegionNotFoundException e) {
        return null;
      }     
    }
    return null;
View Full Code Here

TOP

Related Classes of org.xulfaces.rubis.admin.dao.RegionDAO

Copyright © 2018 www.massapicom. 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.