All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.caelum.stella.boleto.transformer.BoletoWriter Maven / Gradle / Ivy

There is a newer version: 2.1.7
Show newest version
package br.com.caelum.stella.boleto.transformer;

import java.io.InputStream;

import br.com.caelum.stella.boleto.Boleto;

public interface BoletoWriter {

	/**
	 * Escreve as informacoes do boleto no writer.
	 * 
	 * @param boleto
	 */
	void write(Boleto boleto);

	/**
	 * Grava num InputStream
	 * 
	 * @return
	 */
	InputStream toInputStream();

	/**
	 * Cria uma nova pagina no documento de saida.
	 * 
	 * @return true se uma nova pagina foi criada
	 */
	public boolean newPage();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy