-
Notifications
You must be signed in to change notification settings - Fork 0
/
Funcionario.java
49 lines (40 loc) · 1.31 KB
/
Funcionario.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
public class Funcionario extends Pessoa{
private String registro;
private double salario;
public Funcionario(String nome, String telefone, Data nascimento, String registro, double salario){
super(nome, telefone, nascimento);
this.registro = registro;
this.salario = salario;
}
public Funcionario(String nome, Data nascimento, String registro, double salario){
super(nome, nascimento);
this.registro = registro;
this.salario = salario;
}
public void setRegistro(String registro){
if(registro.equals("")) System.out.println("Registro não pode ser vazio");
else this.registro = registro;
}
public String getRegistro(){
return this.registro;
}
public void setSalario(double salario) {
if(salario <= 0) System.out.println("Salario não pode ser menor que 0");
else this.salario = salario;
}
public final double getSalario(){
return this.salario;
}
public double bonificar(){
return this.salario * 0.1;
}
public double getSalarioComBonificacao(){
return bonificar() + this.salario;
}
public String toString(){
String temp;
temp = super.toString() + "\nRegistro: " + this.registro + "\nSalario: " + this.salario + "\nBonificação: "
+ bonificar() + "\nSalario com bonificação: " + getSalarioComBonificacao();
return temp;
}
}