-
Notifications
You must be signed in to change notification settings - Fork 0
/
empleados.java
147 lines (143 loc) · 3.57 KB
/
empleados.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/**
* @author: Phosphorus Moscu / Fernando Pastorelli
* @version: v1.0 27/09/2017
* @see <a href = "https://github.com/Phosphorus-M/Java"> Clases de Java </a>
*/
package objetos2017.SC.clase_6_herencias.ejercicio_2;
public class empleados {
private String name;
private Integer sueldo;
private Boolean cargo;
private Boolean planta;
private Integer horas;
private Integer antiguedad;
private Integer hijos;
private Boolean matrimonio;
public empleados(String nombre, Boolean planta, Integer horas, Integer antiguedad, Integer hijos, Boolean matrimonio) {
this.setName(nombre);
this.setCargo(Boolean.FALSE);
this.setPlanta(planta);
this.setAntiguedad(antiguedad);
this.setHijos(hijos);
this.setMatrimonio(matrimonio);
this.setHoras(horas);
}
public empleados(empleados Empleado) {
this.setName(Empleado.getName());
this.setCargo(Empleado.getCargo());
this.setPlanta(Empleado.getPlanta());
this.setAntiguedad(Empleado.getAntiguedad());
this.setHijos(Empleado.getHijos());
this.setMatrimonio(Empleado.getMatrimonio());
this.setHoras(Empleado.getHoras());
}
public empleados(String nombre, Boolean cargo, Boolean planta, Integer horas, Integer antiguedad, Integer hijos, Boolean matrimonio) {
this.setName(nombre);
if(cargo) {
if(planta) {
this.setPlanta(planta);
this.setCargo(cargo);
}else {
this.setCargo(Boolean.FALSE);
this.setPlanta(planta);
}
}else {
this.setCargo(cargo);
this.setPlanta(planta);
}
this.setHoras(horas);
this.setAntiguedad(antiguedad);
this.setHijos(hijos);
this.setMatrimonio(matrimonio);
}
public Boolean getCargo() {
return cargo;
}
public String getStringDeCargo() {
if(cargo == Boolean.FALSE) return "Empleado";
return "Gerente";
}
public void setCargo(Boolean cargo) {
this.cargo = cargo;
}
public Boolean getPlanta() {
return planta;
}
public void setPlanta(Boolean planta) {
this.planta = planta;
}
public String getStringDePlanta() {
if(planta == Boolean.FALSE) return "Temporaria";
return "Permanente";
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
empleados other = (empleados) obj;
if (cargo == null) {
if (other.cargo != null)
return false;
} else if (!cargo.equals(other.cargo))
return false;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
if (planta == null) {
if (other.planta != null)
return false;
} else if (!planta.equals(other.planta))
return false;
if (sueldo == null) {
if (other.sueldo != null)
return false;
} else if (!sueldo.equals(other.sueldo))
return false;
return true;
}
public Integer getAntiguedad() {
return antiguedad;
}
public void setAntiguedad(Integer antiguedad) {
this.antiguedad = antiguedad;
}
public Integer getSueldo() {
return sueldo;
}
public void setSueldo(Integer sueldo) {
this.sueldo = sueldo;
}
public Integer getHijos() {
return hijos;
}
public void setHijos(Integer hijos) {
if(hijos>=0) this.hijos = hijos;
}
public Boolean getMatrimonio() {
return matrimonio;
}
public String getStringDeMatrimonio() {
if(this.matrimonio == Boolean.TRUE) return " Casad@";
return " Solter@";
}
public void setMatrimonio(Boolean matrimonio) {
this.matrimonio = matrimonio;
}
public Integer getHoras() {
return horas;
}
public void setHoras(Integer horas) {
this.horas = horas;
}
}