import java.awt.print.*;

public class Principal {

  public Principal() {
    ObjetoImpresso p = new ObjetoImpresso();
    FormulariodeImpressao fi = new FormulariodeImpressao();
    fi.indPagina = p.totPag;
    fi.ObjetoaImprimir = (Printable)p;
    fi.montaPag(1);
 }
  
  public static void main(String[] args) {
    Principal principal = new Principal();
  }
}