Package ecar.pojo

Examples of ecar.pojo.DestaqueSubAreaDtqsa


    List aList = new ArrayList();
   
    if ((list != null)&&(list.size()>0)){     
      Iterator it = list.iterator();     
      while(it.hasNext()) {
        DestaqueSubAreaDtqsa destDtqsa = (DestaqueSubAreaDtqsa)it.next();
       
        InformacaoBean info = new InformacaoBean();
        info.setDataHora(Data.parseDate(destDtqsa.getDestaqueAreaDtqa().getDataInclusaoDtqa()));
        info.setDescricao(destDtqsa.getDestaqueAreaDtqa().getDescricaoDtqa());
        info.setTitulo(destDtqsa.getDestaqueAreaDtqa().getIdentificacaoDtqa());
       
        aList.add(info);
      }     
    }
    secaoBean.setInformacaoBean(aList);
View Full Code Here

TOP

Related Classes of ecar.pojo.DestaqueSubAreaDtqsa

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.