Cad Agenda
Cad Agenda
Cad Agenda
package cadagenda;
//Utilizacao de componentes do Java (pacotes)
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.Vector;
// A classe Vector implementa um array redimensionável de objetos. Assim como um
array, objetos da //classe Vector contém elementos que podem ser acessados via
índices.
//Limpa Campos
public void limpaDados() {
this.setCodigo("");
this.setNome("");
this.setEndereco("");
this.setFone("");
this.setCelular("");
this.setNacionalidade("");
this.setNascimento("");
this.setCpf("");
this.setEmail("");
this.setResidencial("");
this.setCep("");
this.setComplemento("");
this.setObs("");
}
//Obtem dados
public void obterDadosContatos(int pos) {
Contato contatoAtual=(Contato)vContatos.elementAt(pos);
this.setCodigo(contatoAtual.getCodigo());
this.setNome(contatoAtual.getNome());
this.setEndereco(contatoAtual.getEndereco());
this.setFone(contatoAtual.getFone());
this.setCelular(contatoAtual.getCelular());
this.setSexo(contatoAtual.getSexo());
this.setNacionalidade(contatoAtual.getNacionalidade());
this.setNascimento(contatoAtual.getNascimento());
this.setCpf(contatoAtual.getCpf());
this.setEmail(contatoAtual.getEmail());
this.setResidencial(contatoAtual.getResidencial());
this.setCep(contatoAtual.getCep());
this.setComplemento(contatoAtual.getComplemento());
this.setObs(contatoAtual.getObs());
}
//fecha janela
public void windowClosing(WindowEvent e) {
System.exit(0);
}
CONTATO
package cadagenda;
String getNacionalidade() {
throw new UnsupportedOperationException("Not supported yet."); // Generated
from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
String getNascimento() {
throw new UnsupportedOperationException("Not supported yet."); // Generated
from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
String getCpf() {
throw new UnsupportedOperationException("Not supported yet."); // Generated
from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
String getEmail() {
throw new UnsupportedOperationException("Not supported yet."); // Generated
from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
String getResidencial() {
throw new UnsupportedOperationException("Not supported yet."); // Generated
from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
String getCep() {
throw new UnsupportedOperationException("Not supported yet."); // Generated
from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
String getComplemento() {
throw new UnsupportedOperationException("Not supported yet."); // Generated
from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
}