Package ecar.bean

Examples of ecar.bean.EstruturaWebServiceBean


      if(objects != null && !objects.isEmpty()){
        Iterator itO = objects.iterator();
        while(itO.hasNext()){
          Object[] o = (Object[]) itO.next();
         
          EstruturaWebServiceBean ewsBean = new EstruturaWebServiceBean();
         
          ewsBean.setCodigo((o[0] != null) ? Long.valueOf(o[0].toString()) : null);
          ewsBean.setNome((o[1] != null) ? o[1].toString() : null);
         
            retorno.add(ewsBean);         
        }
      }
View Full Code Here

TOP

Related Classes of ecar.bean.EstruturaWebServiceBean

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.