Package br.com.caelum.stella.boleto.bancos.gerador

Examples of br.com.caelum.stella.boleto.bancos.gerador.DigitoPara


   * @throws CriacaoBoletoException se código tenha mais de 44 digitos.
   */
  public String comCampoLivre(StringBuilder campoLivre) {
    this.codigoDeBarras.append(campoLivre);
    String trecho = this.codigoDeBarras.toString();
    String digito = new DigitoPara(trecho).complementarAoModulo().mod(11);
    this.codigoDeBarras.insert(4, digito);
    validaTamahoDoCodigoDeBarrasCompletoGerado();
    return this.codigoDeBarras.toString();
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.stella.boleto.bancos.gerador.DigitoPara

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.