-
Notifications
You must be signed in to change notification settings - Fork 0
/
Perfil.java
60 lines (48 loc) · 1.23 KB
/
Perfil.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package projeto;
import java.util.Scanner;
abstract class Perfil
{
Scanner leitor = new Scanner(System.in);
private String Login;
private String Senha;
private String nomeUsuario;
private String endereco;
private String contato;
public Perfil(){
this.Login = null;
this.Senha = null;
this.nomeUsuario = null;
this.endereco = "vazio";
this.contato = "vazio";
}
public String getLogin() {
return Login;
}
public String getSenha() {
return Senha;
}
public String getNomeUsuario() {
return nomeUsuario;
}
public void setLogin(String Login) {
this.Login = Login;
}
public void setSenha(String Senha) {
this.Senha = Senha;
}
public void setNomeUsuario(String nomeUsuario) {
this.nomeUsuario = nomeUsuario;
}
public String getEndereco() {
return endereco;
}
public String getContato() {
return contato;
}
public void setEndereco(String endereco) {
this.endereco = endereco;
}
public void setContato(String contato) {
this.contato = contato;
}
}