public TelaInicial() {
   BorderLayout layoutTelaInicial = new BorderLayout();
   this.setTitle(Informacoes.getNomedoprograma() + " " + Informacoes.getVersao());
   this.setDefaultCloseOperation(EXIT_ON_CLOSE);
   this.setSize(800, 200);
   this.setResizable(false);
   this.add(Titulo(), layoutTelaInicial.NORTH);
   this.add(Centro(), layoutTelaInicial.CENTER);
   this.add(Rodape(), layoutTelaInicial.SOUTH);
   this.setLocationRelativeTo(null);
 }
 private JPanel Titulo() {
   fonteTextoDoTitulo = new Font("Calibri", Font.PLAIN, 24);
   titulo = new JPanel();
   textoDoTitulo = new JLabel();
   textoDoTitulo.setFont(fonteTextoDoTitulo);
   textoDoTitulo.setText(Informacoes.getNomedoprograma());
   titulo.add(textoDoTitulo);
   return titulo;
 }
 private JPanel Rodape() {
   rodape = new JPanel();
   textoRodape = new JTextField();
   textoRodape.setText("Desenvolvido por : " + Informacoes.getDesenvolvedores());
   fonteTextoRodape = new Font("Calibri", Font.PLAIN, 12);
   textoRodape.setFont(fonteTextoRodape);
   textoRodape.setEditable(false);
   rodape.add(textoRodape);
   return rodape;
 }