br.com.objectos.way.duplicata.WayDuplicata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of way-duplicata Show documentation
Show all versions of way-duplicata Show documentation
Geração de duplicatas. Simples.
The newest version!
/*
* WayDuplicata.java criado em 06/05/2013
*
* Propriedade de Objectos Fábrica de Software LTDA.
* Reprodução parcial ou total proibida.
*/
package br.com.objectos.way.duplicata;
import java.io.File;
import java.io.IOException;
import com.google.inject.ImplementedBy;
/**
* @author [email protected] (Edenir Norberto Anschau)
*/
@ImplementedBy(WayDuplicataGuice.class)
public interface WayDuplicata {
interface HtmlOf {
HtmlOf inlineCss();
HtmlOf page();
File toFile(File saida) throws IOException;
@Override
String toString();
}
HtmlOf htmlOf(Duplicata duplicata);
}