Examples of geraLinhaDigitavelPara()


Examples of br.com.caelum.stella.boleto.bancos.GeradorDeLinhaDigitavel.geraLinhaDigitavelPara()

  private void imprimeLinhaDigitavelEmNegrito(Boleto boleto) {
    final float LINHA4 = 319;
    this.writer.writeBold(125, LINHA4, boleto.getBanco().getNumeroFormatadoComDigito());
    GeradorDeLinhaDigitavel linhaDigitavelGenerator = new GeradorDeLinhaDigitavel();
    String codigoDeBarras = boleto.getBanco().geraCodigoDeBarrasPara(boleto);
    this.writer.writeBold(175, LINHA4, linhaDigitavelGenerator.geraLinhaDigitavelPara(codigoDeBarras));
  }
 
  private void imprimeLocaisDePagamentoEVencimento(Boleto boleto) {
    final float LINHA5 = 291;
    for (int i = 0; i < boleto.getLocaisDePagamento().size(); i++) {
View Full Code Here

Examples of br.com.caelum.stella.boleto.bancos.GeradorDeLinhaDigitavel.geraLinhaDigitavelPara()

  private void imprimeLinhaDigitavelEmNegrito(Boleto boleto) {
    final float LINHA4 = 319;
    this.writer.writeBold(125, LINHA4, boleto.getBanco().getNumeroFormatadoComDigito());
    GeradorDeLinhaDigitavel linhaDigitavelGenerator = new GeradorDeLinhaDigitavel();
    String codigoDeBarras = boleto.getBanco().geraCodigoDeBarrasPara(boleto);
    this.writer.writeBold(175, LINHA4, linhaDigitavelGenerator.geraLinhaDigitavelPara(codigoDeBarras));
  }
 
  private void imprimeLocaisDePagamentoEVencimento(Boleto boleto) {
    final float LINHA5 = 291;
    for (int i = 0; i < boleto.getLocaisDePagamento().size(); i++) {
View Full Code Here

Examples of br.com.caelum.stella.boleto.bancos.LinhaDigitavelGenerator.geraLinhaDigitavelPara()

            this.writer.writeBold(125, LINHA4, boleto.getBanco()
                    .getNumeroFormatado());

            LinhaDigitavelGenerator linhaDigitavelGenerator = new LinhaDigitavelGenerator();
            this.writer.writeBold(175, LINHA4, linhaDigitavelGenerator
                    .geraLinhaDigitavelPara(boleto));

            for (int i = 0; i < boleto.getLocaisDePagamento().size(); i++) {
                this.writer.write(5, LINHA5 - (i - 1) * 10, boleto
                        .getLocaisDePagamento().get(i));
View Full Code Here

Examples of br.com.caelum.stella.boleto.bancos.LinhaDigitavelGenerator.geraLinhaDigitavelPara()

    this.writer.writeBold(125, LINHA4, boleto.getBanco()
        .getNumeroFormatado());

    LinhaDigitavelGenerator linhaDigitavelGenerator = new LinhaDigitavelGenerator();
    this.writer.writeBold(175, LINHA4, linhaDigitavelGenerator
        .geraLinhaDigitavelPara(boleto));

    for (int i = 0; i < boleto.getLocaisDePagamento().size(); i++) {
      this.writer.write(5, LINHA5 - (i - 1) * 10, boleto
          .getLocaisDePagamento().get(i));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.