}
// 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;