-
Notifications
You must be signed in to change notification settings - Fork 0
/
Evento.java
140 lines (120 loc) · 3.06 KB
/
Evento.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
/**
* Write a description of class Evento here.
*
* @author (your name)
* @version (a version number or a date)
*/
import java.util.ArrayList;
public class Evento
{
// Variáveis de Instância
private String nome;
private String data;
private ArrayList<Utilizador> inscritos;
private int numLimite;
private String dataLim;
private String tipo;
//Construtores
public Evento()
{
this.nome = "";
this.data = "";
this.inscritos = new ArrayList<Utilizador>();
this.numLimite = 0;
this.dataLim = "";
this.tipo="";
}
public Evento(String n, String d, ArrayList<Utilizador> i, int x, String dl,String tipo)
{
this.nome = n;
this.data = d;
this.inscritos = new ArrayList<Utilizador>(i);
this.numLimite = x;
this.dataLim = dl;
this.tipo = tipo;
}
public Evento(Evento e)
{
this(e.getNome(), e.getData(), e.getInscritos(), e.getNumLimite(), e.getDataLim(), e.getTipo());
}
//Métodos de Instância
public String getNome()
{
return this.nome;
}
public String getData()
{
return this.data;
}
public String getTipo()
{
return this.tipo;
}
public ArrayList<Utilizador> getInscritos()
{
ArrayList<Utilizador> res = new ArrayList<Utilizador>();
for (Utilizador u : this.inscritos)
res.add(u.clone());
return res;
}
public int getNumLimite()
{
return this.numLimite;
}
public String getDataLim()
{
return this.dataLim;
}
public void setNome(String n)
{
this.nome = n;
}
public void setTipo(String t)
{
this.tipo = t;
}
public void setData(String d)
{
this.data = d;
}
public void setInscritos(ArrayList<Utilizador> inscricoes)
{
int i;
for(i=0;i<inscricoes.size()-1;i++)
{
this.inscritos.add(inscricoes.get(i));
}
}
public void setNumLimite(int i)
{
this.numLimite = i;
}
public void setDataLim(String d)
{
this.dataLim = d;
}
//ToString Equals e Clone
public String toString()
{
StringBuilder s = new StringBuilder("Evento: \n");
s.append(this.nome).append("\n Data: ").append(this.data).append("\n Data Limite de Inscrição: ").append(this.dataLim).append("\n Lista de Inscritos: \n");
for(Utilizador u : inscritos)
{
s.append(u.toString());
}
return s.toString();
}
public boolean equals(Object o)
{
if(this == o)
return true;
if ((o!=null || (o.getClass()!=this.getClass())))
return false;
Evento e = (Evento) o;
return ((e.getNome() == this.nome) && (e.getData() == this.data) && (this.inscritos.equals(e.getInscritos())));
}
public Evento clone()
{
return new Evento(this.nome, this.data, this.inscritos, this.numLimite, this.dataLim, this.tipo);
}
}