Aula tema 5
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");