Aula tema 5

453 palavras 2 páginas
import java.awt.*; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; import javax.swing.JOptionPane;

public class FormCeletista extends Frame implements ActionListener{ protected Dimension dQuadro, dRotulo, dButton, dCaixaTexto; protected Button bCalcular, bSalvar, bImpostos, bVoltar; protected TextField tfNome, tfEndereco, tfTelefone, tfRg, tfCpf, tfSalarioMensal; protected Label lTitulo, lNome, lEndereco, lTelefone, lRg, lCpf, lSalarioMensal; FormSelecao formUm = new FormSelecao(); PessoaCeletista pc = new PessoaCeletista(null,null,null,null,null,0,0); public FormCeletista(){ Dimension dQuadro = new Dimension(350, 320); Dimension dRotulo = new Dimension(50, 25); Dimension dCaixaTexto = new Dimension(180, 25); Dimension dButton = new Dimension(130, 25);

setTitle("Formulario Celetista"); setResizable(false); setSize(dQuadro); setLocation(250, 280); setLayout(null);

lNome = new Label("Nome"); lNome.setSize(dRotulo); lNome.setLocation(25,50); tfNome = new TextField(); tfNome.setSize(dCaixaTexto); tfNome.setLocation(80, 50);

lEndereco = new Label("Enderço"); lEndereco.setSize(dRotulo); lEndereco.setLocation(25, 80); tfEndereco = new TextField(); tfEndereco.setSize(dCaixaTexto); tfEndereco.setLocation(80, 80);

lTelefone = new Label("Telefone"); lTelefone.setSize(dRotulo); lTelefone.setLocation(25,110); tfTelefone = new TextField(); tfTelefone.setSize(dCaixaTexto); tfTelefone.setLocation(80, 110);

lRg = new Label("RG"); lRg.setSize(dRotulo); lRg.setLocation(25,140); tfRg = new TextField(); tfRg.setSize(dCaixaTexto); tfRg.setLocation(80, 140);

lCpf = new Label("CPF"); lCpf.setSize(dRotulo); lCpf.setLocation(25,170); tfCpf = new TextField(); tfCpf.setSize(dCaixaTexto); tfCpf.setLocation(80, 170);

lSalarioMensal = new Label("Salario");

Relacionados

  • aula tema 5
    509 palavras | 3 páginas
  • Aula Tema 5
    275 palavras | 2 páginas
  • Aula tema 5
    1661 palavras | 7 páginas
  • Aula Tema 5
    698 palavras | 3 páginas
  • Aula tema 5
    418 palavras | 2 páginas
  • Aula Tema 5
    290 palavras | 2 páginas
  • aula tema 5
    425 palavras | 2 páginas
  • Aula tema 5
    624 palavras | 3 páginas
  • aula tema 5
    337 palavras | 2 páginas
  • aula tema 5
    1429 palavras | 6 páginas