This repository has been archived by the owner on Jan 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtilizador.java
178 lines (144 loc) · 4.58 KB
/
Utilizador.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
import java.util.List;
import java.util.ArrayList;
import java.util.Objects;
public class Utilizador {
private int codigo;
private String email;
private String nome;
private String morada;
private int nrFiscal;
private List<String> vender;
private List<String> vendido;
private List<String> comprado;
private float totVendas;
public Utilizador() {
this.codigo = 0;
this.email = "";
this.nome = "";
this.morada = "";
this.nrFiscal = 0;
this.vender = new ArrayList<>();
this.vendido = new ArrayList<>();
this.comprado = new ArrayList<>();
this.totVendas = 0;
}
public Utilizador(int codigo, String email, String nome, String morada, int nrFiscal, List<String> vender, List<String> vendido, List<String> comprado, float totVendas) {
this.codigo = codigo;
this.email = email;
this.nome = nome;
this.morada = morada;
this.nrFiscal = nrFiscal;
this.vender = new ArrayList<>();
this.vender.addAll(vender);
this.vendido = new ArrayList<>();
this.vendido.addAll(vendido);
this.comprado = new ArrayList<>();
this.comprado.addAll(comprado);
this.totVendas = totVendas;
}
public Utilizador(Utilizador u) {
this.codigo = u.getCodigo();
this.email = u.getEmail();
this.nome = u.getNome();
this.morada = u.getMorada();
this.nrFiscal = u.getNrFiscal();
this.vender = u.getVender();
this.vendido = u.getVendido();
this.comprado = u.getComprado();
this.totVendas = u.getTotVendas();
}
public int getCodigo() {
return codigo;
}
public void setCodigo(int codigo) {
this.codigo = codigo;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getMorada() {
return morada;
}
public void setMorada(String morada) {
this.morada = morada;
}
public int getNrFiscal() {
return nrFiscal;
}
public void setNrFiscal(int nrFiscal) {
this.nrFiscal = nrFiscal;
}
public List<String> getVender() {
List<String> newVender = new ArrayList<>();
newVender.addAll(this.vender);
return newVender;
}
public void setVender(List<String> vender) {
this.vender = new ArrayList<>();
this.vender.addAll(vender);
}
public List<String> getVendido() {
List<String> newVendido = new ArrayList<>();
newVendido.addAll(this.vendido);
return newVendido;
}
public void setVendido(List<String> vendido) {
this.vendido = new ArrayList<>();
this.vendido.addAll(vendido);
}
public List<String> getComprado() {
List<String> newComprado = new ArrayList<>();
newComprado.addAll(this.comprado);
return newComprado;
}
public void setComprado(List<String> comprado) {
this.comprado = new ArrayList<>();
this.comprado.addAll(comprado);
}
public float getTotVendas() {
return totVendas;
}
public void setTotVendas(float totVendas) {
this.totVendas = totVendas;
}
public void removeVender(String a) {
vender.remove(a);
}
public void adicionaVender(String a) {
vender.add(a);
}
public void removeVendido(String a) {
vendido.remove(a);
}
public void adicionaVendido(String a) {
vendido.add(a);
}
public void removeComprado(String a) {
comprado.remove(a);
}
public void adicionaComprado(String a) {
comprado.add(a);
}
public Utilizador clone() {
return new Utilizador(this);
}
public String toString() {
return codigo + ";" + email + ";" + nome + ";" + morada + ";" + nrFiscal + ";" + totVendas;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Utilizador that = (Utilizador) o;
return codigo == that.codigo && nrFiscal == that.nrFiscal && Float.compare(that.totVendas, totVendas) == 0 && Objects.equals(email, that.email) && Objects.equals(nome, that.nome) && Objects.equals(morada, that.morada) && Objects.equals(vender, that.vender) && Objects.equals(vendido, that.vendido) && Objects.equals(comprado, that.comprado);
}
}