Package ecar.servlet.relatorio.PPA.bean.comparator

Examples of ecar.servlet.relatorio.PPA.bean.comparator.ProdutoBeanComparatorDescricao


  }

  // ordenar produto por descricao
  private TreeSet<ProdutoBean> reordenarProduto(ArrayList<ProdutoBean> colecao){
    TreeSet<ProdutoBean> novaColecao = new TreeSet<ProdutoBean>( new ProdutoBeanComparatorDescricao() );
    for (Iterator iter = colecao.iterator(); iter.hasNext();) {
      ProdutoBean prod = (ProdutoBean) iter.next();     
      novaColecao.add( prod );
    }   
    return novaColecao;
View Full Code Here

TOP

Related Classes of ecar.servlet.relatorio.PPA.bean.comparator.ProdutoBeanComparatorDescricao

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.