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++) {